diff options
Diffstat (limited to 'game/main.cpp')
| -rw-r--r-- | game/main.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/game/main.cpp b/game/main.cpp index 325b66d..9c9f9ee 100644 --- a/game/main.cpp +++ b/game/main.cpp @@ -2,12 +2,13 @@  #include <crepe/api/Script.h>  #include "GameScene.h" +#include "mainmenu/MainMenuScene.h"  using namespace crepe;  int main() {  	Engine gameloop; -	gameloop.add_scene<GameScene>(); +	gameloop.add_scene<MainMenuScene>();  	return gameloop.main();  } |