RichardMarks / coin-collector-mobile

MIT License
0 stars 1 forks source link

implement the main loop #8

Closed RichardMarks closed 6 years ago

RichardMarks commented 6 years ago

The game should continue running until the user runs out of lives and the user does not want to play again.

This is the general idea

BEGIN MAIN LOOP
  RESET GAME STATE
  RUN GAME LOOP
  GAMEOVER
  PLAY AGAIN?
  IF NO: GO TO END GAME
  ELSE: GO TO BEGIN MAIN LOOP
END MAIN LOOP
END GAME

game loop is not in scope for this issue and will be implemented separately.