aboutsummaryrefslogtreecommitdiff
path: root/src/game_of_life.cpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-06-02 20:27:48 +0200
committerHampusM <hampus@hampusmat.com>2022-06-13 17:57:00 +0200
commitea5cd08dd67f9bc4351ecebdda9e310a8072ae32 (patch)
treed867c198e886ffd9ed233a72f1fe35bb771f999e /src/game_of_life.cpp
parent2d8e52e59af27fc68f4ff5b63d1b53e8d6d4c043 (diff)
refactor: move main function to engine
Diffstat (limited to 'src/game_of_life.cpp')
-rw-r--r--src/game_of_life.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/game_of_life.cpp b/src/game_of_life.cpp
deleted file mode 100644
index c0f8630..0000000
--- a/src/game_of_life.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "interfaces/engine.hpp"
-
-#include "bootstrap.hpp"
-
-auto main() noexcept -> int
-{
- auto container = bootstrap();
-
- auto engine = container.get<ICLIGameEngine>();
-
- engine->start();
-}