Bug Fixes

Player Placement
Basic Player Movement
This commit is contained in:
Indrajith K L
2021-08-03 17:53:10 +05:30
parent 5bd12d5a65
commit 705886d371
13 changed files with 236 additions and 60 deletions

View File

@@ -3,10 +3,9 @@ import "json" for Json
import "graphics" for Canvas, Color
import "dome" for Window, Process
import "math" for Math
import "config" for Config
import "./config" for Config
import "./controls" for Controls
import "./game_state" for GameState
import "./screens/menu_screen" for MenuScreen
class Main {
construct new() {
@@ -15,7 +14,7 @@ class Main {
init() {
Config.new()
__gameState = GameState.new()
__gameState.switch(MenuScreen)
__gameState.switch("menu")
}
update() {