📄️ index.html and index.js
The index.html file is the starting point for our application and only does a few things.
📄️ Constants
The constants.js file holds many constants we want to easily be able to change on the fly without having to dig through our code in multiple files.
📄️ Scenes
As you might have already noticed, in index.js we pass two scenes into the config object that is used to initialize phaser.
📄️ Manager Classes
To make the code more readable and modular we split up different parts of the game into different manager classes which can be found in src/classes/game.