aboutsummaryrefslogtreecommitdiff
path: root/game/main.cpp
blob: 9b25444d2b36bdfc59b32727278b748b25aac0b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <crepe/api/Engine.h>
#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();
}