aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/game.hpp')
-rw-r--r--src/interfaces/game.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/interfaces/game.hpp b/src/interfaces/game.hpp
new file mode 100644
index 0000000..f9d851b
--- /dev/null
+++ b/src/interfaces/game.hpp
@@ -0,0 +1,7 @@
+#pragma once
+
+class IGame
+{
+public:
+ virtual void run() = 0;
+};