1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include "interfaces/engine.hpp" #include "bootstrap.hpp" #include <backward.hpp> auto main() noexcept -> int { backward::SignalHandling signal_handling; auto container = bootstrap(); auto engine = container.get<ICLIGameEngine>(); engine->start(); }