aboutsummaryrefslogtreecommitdiff
path: root/src/engine/main.cpp
blob: b4955b53f777d9d8fa1f4343affa94431bb76769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "interfaces/engine.hpp"

#include "bootstrap.hpp"

auto main() noexcept -> int
{
	auto container = bootstrap();

	auto engine = container.get<ICLIGameEngine>();

	engine->start();
}