summaryrefslogtreecommitdiff
path: root/client/src/akkamon/GameConfig.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/akkamon/GameConfig.ts')
-rw-r--r--client/src/akkamon/GameConfig.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/client/src/akkamon/GameConfig.ts b/client/src/akkamon/GameConfig.ts
new file mode 100644
index 0000000..11fc26a
--- /dev/null
+++ b/client/src/akkamon/GameConfig.ts
@@ -0,0 +1,19 @@
+import {
+ UIScene
+} from './scenes/UIScene';
+import {
+ DemoScene
+} from './scenes/DemoScene';
+import {
+ BootScene
+} from './scenes/BootScene';
+
+
+export const gameConfig: Phaser.Types.Core.GameConfig & Phaser.Types.Core.RenderConfig = {
+ type: Phaser.AUTO,
+ backgroundColor: '#125555',
+ width: 800,
+ height: 600,
+ pixelArt: true,
+ scene: [BootScene, DemoScene, UIScene]
+};