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

#include "bootstrap.hpp"

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

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

	engine->start();
}