All public logs

Jump to navigation Jump to search

Combined display of all available logs of Arduboy Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 10:39, 16 June 2024 Filmote talk contribs created page Frogger - Adding a Title and Game Over Screen (Created page with " A typical design pattern for a game is to have a variable that describes what mode the program is in. For a basic game (like ours!) this will include a title screen, playing the game itself and a game over stage. For more complex games, this might include modes for setting options, checking inventory, saving scores and so on. The game mode can be defined in a new <code>enum</code> as shown below: <pre> enum GameMode { TitleScreen, Play, GameOver, }; Gam...")