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.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/client/src/akkamon/GameConfig.ts b/client/src/akkamon/GameConfig.ts
index a0abf11..34915f7 100644
--- a/client/src/akkamon/GameConfig.ts
+++ b/client/src/akkamon/GameConfig.ts
@@ -1,12 +1,13 @@
import DemoScene from './scenes/DemoScene';
import BootScene from './scenes/BootScene';
+import BattleScene from './scenes/BattleScene';
export const gameConfig: Phaser.Types.Core.GameConfig & Phaser.Types.Core.RenderConfig = {
type: Phaser.AUTO,
- backgroundColor: '#125555',
+ backgroundColor: '#FFFFFF',
width: 800,
- height: 800,
+ height: 750,
pixelArt: true,
- scene: [BootScene, DemoScene]
+ scene: [BootScene, DemoScene, BattleScene]
};