aboutsummaryrefslogtreecommitdiff
path: root/game/main.cpp
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-12-22 00:11:56 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-12-22 00:11:56 +0100
commit7bcee4f662b20b8e2e7183bb6bd4cb061fa14e12 (patch)
treecb7976922b3cc6070dc9c14d0ffcaea48b3efee6 /game/main.cpp
parent5a2f6a14803885b7c53bab7d43208476d2e1bd5b (diff)
added menu buttons + scene switching
Diffstat (limited to 'game/main.cpp')
-rw-r--r--game/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/game/main.cpp b/game/main.cpp
index 9c9f9ee..5d3dbaf 100644
--- a/game/main.cpp
+++ b/game/main.cpp
@@ -9,6 +9,7 @@ using namespace crepe;
int main() {
Engine gameloop;
gameloop.add_scene<MainMenuScene>();
+ gameloop.add_scene<GameScene>();
return gameloop.main();
}