aboutsummaryrefslogtreecommitdiff
path: root/game/main.cpp
blob: 2198f7302005244f50b6fc1074d25acc648b8ae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <crepe/api/Engine.h>
#include <crepe/api/Script.h>

#include "Config.h"
#include "GameScene.h"

using namespace crepe;

int main() {
	Config::get_instance() = ENGINE_CONFIG;

	Engine gameloop;
	gameloop.add_scene<GameScene>();

	return gameloop.main();
}