* Menu Screen

* SFX
* Player Sprites
This commit is contained in:
Indrajith K L
2021-08-03 02:22:07 +05:30
parent f2e4f56366
commit 5bd12d5a65
13 changed files with 1107 additions and 29 deletions

View File

@@ -6,7 +6,7 @@ import "math" for Math
import "config" for Config
import "./controls" for Controls
import "./game_state" for GameState
import "./levels/menu" for Menu
import "./screens/menu_screen" for MenuScreen
class Main {
construct new() {
@@ -15,7 +15,7 @@ class Main {
init() {
Config.new()
__gameState = GameState.new()
__gameState.switch(Menu)
__gameState.switch(MenuScreen)
}
update() {