summaryrefslogtreecommitdiff
path: root/src/Controller/ConsoleController/ConsoleController.hpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-04-30 09:07:40 +0200
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-04-30 09:07:40 +0200
commitfa88c91351388c4b2e1791ccab2cd8a959dc976b (patch)
tree76f63e47c85368b304b6558983a2d3996f1c9af3 /src/Controller/ConsoleController/ConsoleController.hpp
parent4afa51e9e686075194194b80c0cc572222ee47aa (diff)
Fix some things
Diffstat (limited to 'src/Controller/ConsoleController/ConsoleController.hpp')
-rw-r--r--src/Controller/ConsoleController/ConsoleController.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Controller/ConsoleController/ConsoleController.hpp b/src/Controller/ConsoleController/ConsoleController.hpp
new file mode 100644
index 0000000..9534877
--- /dev/null
+++ b/src/Controller/ConsoleController/ConsoleController.hpp
@@ -0,0 +1,26 @@
+#ifndef DEF_CTCONSOLE
+#define DEF_CTCONSOLE
+
+/* CTConsole.hpp
+ * Defines the class CTConsole
+ * CTConsole is a controller which displays a game in a terminal
+ * Creators : krilius, manzerbredes
+ * Date : 29/04/2915 */
+
+#include <iostream>
+
+#include "../Model/Game.hpp"
+
+class CTConsole
+{
+private:
+ Game * m_game;
+
+public:
+ CTConsole();
+ ~CTConsole();
+
+ void play();
+};
+
+#endif \ No newline at end of file