Spaces:
Runtime error
Runtime error
Commit
·
e2b43cd
1
Parent(s):
fd6f6bd
up
Browse files- src/app/games/index.ts +1 -1
src/app/games/index.ts
CHANGED
@@ -11,6 +11,6 @@ import { game as pharaoh } from "./pharaoh"
|
|
11 |
|
12 |
export const games = { pirates, city, dungeon, doom, vernian, enchanters, flamenco, pharaoh}
|
13 |
|
14 |
-
export const defaultGame: GameType = "
|
15 |
|
16 |
export const getGame = (type?: GameType) => games[type || defaultGame] || games[defaultGame]
|
|
|
11 |
|
12 |
export const games = { pirates, city, dungeon, doom, vernian, enchanters, flamenco, pharaoh}
|
13 |
|
14 |
+
export const defaultGame: GameType = "enchanters"
|
15 |
|
16 |
export const getGame = (type?: GameType) => games[type || defaultGame] || games[defaultGame]
|