summaryrefslogtreecommitdiff
path: root/client/src/akkamon/GameConfig.ts
blob: 11fc26a4a19ea1e776a848f2582d59d77349512f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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]
};