Skip to content
Snippets Groups Projects
Select Git revision
  • 5bcfc9c6c971339c3b68b60da5762d6257fa76a5
  • master default
  • Project
3 results

Refreshments.java

Blame
  • gameLibrary.js 482 B
    import DEMO_GAME from './games/demo.js';
    import TWO_PLAYER_GAME from './games/twoPlayer.js';
    import THREE_PLAYER_GAME from './games/threePlayer.js';
    import TWO_PLAYER_MINI_GAME from './games/twoPlayerMini.js';
    import THREE_PLAYER_MINI_GAME from './games/threePlayerMini.js';
    
    const GAME_LIBRARY = new Map([
      DEMO_GAME,
      TWO_PLAYER_GAME,
      THREE_PLAYER_GAME,
      TWO_PLAYER_MINI_GAME,
      THREE_PLAYER_MINI_GAME,
    ].map((game) => [game.identifier, game]));
    export default GAME_LIBRARY;