aboutsummaryrefslogtreecommitdiff
path: root/game/main.cpp
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-12-23 22:37:05 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-12-23 22:37:05 +0100
commit4cbd236de18446d192dd59d7c7bc4ebb78850e37 (patch)
treeea84c67e6ce8521dc151504c3e560ce0f6064f99 /game/main.cpp
parent225e873c8ac9c4c08720a69b8f2c817d22cf0071 (diff)
added shop scene with background
Diffstat (limited to 'game/main.cpp')
-rw-r--r--game/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/game/main.cpp b/game/main.cpp
index 5d3dbaf..62c23be 100644
--- a/game/main.cpp
+++ b/game/main.cpp
@@ -3,11 +3,13 @@
#include "GameScene.h"
#include "mainmenu/MainMenuScene.h"
+#include "mainmenu/ShopMenuScene.h"
using namespace crepe;
int main() {
Engine gameloop;
+ gameloop.add_scene<ShopMenuScene>();
gameloop.add_scene<MainMenuScene>();
gameloop.add_scene<GameScene>();