aboutsummaryrefslogtreecommitdiff
path: root/src/game/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game.cpp')
-rw-r--r--src/game/game.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp
new file mode 100644
index 0000000..e785e18
--- /dev/null
+++ b/src/game/game.cpp
@@ -0,0 +1,9 @@
+#include "game.hpp"
+
+#include <iostream>
+
+Game::Game(IVector2Factory vector2_factory) : _vector2_factory(std::move(vector2_factory))
+{
+}
+
+void Game::run() {}