├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── gasp.mp3 └── particle.png ├── favicon.svg ├── index.html ├── package.json ├── src ├── main.ts ├── menu-scene.ts └── style.css ├── tsconfig.json └── vite.config.js /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/README.md -------------------------------------------------------------------------------- /assets/gasp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/assets/gasp.mp3 -------------------------------------------------------------------------------- /assets/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/assets/particle.png -------------------------------------------------------------------------------- /favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/favicon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/menu-scene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/src/menu-scene.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/src/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubershmekel/vite-phaser-ts-starter/HEAD/vite.config.js --------------------------------------------------------------------------------