summaryrefslogtreecommitdiff
path: root/client/src/akkamon/GameConfig.ts
blob: 34915f753648d029eaf9bb3e01be61053e0a0733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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: '#FFFFFF',
    width: 800,
    height: 750,
    pixelArt: true,
    scene: [BootScene, DemoScene, BattleScene]
};