aboutsummaryrefslogtreecommitdiff
path: root/game/main.cpp
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2025-01-08 09:52:00 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2025-01-08 09:52:00 +0100
commitb1824253875901b4fb6f4c5fee72aea6d807d370 (patch)
tree8acc156e68d48022f453dcf06b541f77a5803484 /game/main.cpp
parente9082de7d114ce024a884cac38c545c99de4026a (diff)
parente75ca1c947f3cde19bebf15049732bc069c6e913 (diff)
Merge remote-tracking branch 'origin/master' into max/game2
Diffstat (limited to 'game/main.cpp')
-rw-r--r--game/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/game/main.cpp b/game/main.cpp
index 325b66d..e341353 100644
--- a/game/main.cpp
+++ b/game/main.cpp
@@ -2,11 +2,15 @@
#include <crepe/api/Script.h>
#include "GameScene.h"
+#include "menus/mainmenu/MainMenuScene.h"
+#include "menus/shop/ShopMenuScene.h"
using namespace crepe;
int main() {
Engine gameloop;
+ gameloop.add_scene<MainMenuScene>();
+ gameloop.add_scene<ShopMenuScene>();
gameloop.add_scene<GameScene>();
return gameloop.main();