Jeu de démineur sur navigateur avec p5.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

game.js 94B

12345678
  1. class Game {
  2. const GAME_STATES = {
  3. DEFEAT: 1,
  4. VICTORY: 2,
  5. ONGOING: 3,
  6. STOPPED: 4
  7. }
  8. }