import BootScene from './scenes/BootScene.js'; import Level1Scene from './scenes/Level1Scene.js'; const config = { type: Phaser.AUTO, width: 1600, height: 900, backgroundColor: '#1a1a2e', scale: { mode: Phaser.Scale.FIT, autoCenter: Phaser.Scale.CENTER_BOTH, }, physics: { default: 'arcade', arcade: { gravity: { y: 800 }, debug: false, }, }, scene: [BootScene, Level1Scene], }; new Phaser.Game(config);