aboutsummaryrefslogtreecommitdiff
path: root/main.wren
diff options
context:
space:
mode:
Diffstat (limited to 'main.wren')
-rw-r--r--main.wren4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.wren b/main.wren
index 9e94aa3..d166950 100644
--- a/main.wren
+++ b/main.wren
@@ -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() {