My body is clearly game
Only had about 5 hours sleep yet woke up feeling surprisingly fresh. Will undoubtedly crash out some point later, but for now I’m cracking on. I’ve got more functionality on my menu to select different games and highlight them. In the past I did this by writing out every possible selected menu (repeating the text but making one line highlighted). Fortunately, I’ve improved it to not be so wasteful.
I’ve also created the basis for the games. I’ve a base class that has pure virtual methods for the update and draw so that each inheriting game class will define it’s own update and draw. I’ve also got a delayed start so that I can display an intro (explaining what the game is and how to play) as well as an interface for passing the score to the menu (and through that UI) system
