Select Git revision
TestformController.php
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;