Skip to content
Snippets Groups Projects
Select Git revision
  • 173a4482b1eead56e7ef2ad274de247c89204d5f
  • main default protected
2 results

failFast.js

Blame
  • Forked from SOFT Core / SOFT 260 / Dynamic Programming Lab
    Source project has a limited visibility.
    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;