summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/GameSession.h10
-rw-r--r--includes/interface/ControlFactory.h15
2 files changed, 25 insertions, 0 deletions
diff --git a/includes/GameSession.h b/includes/GameSession.h
new file mode 100644
index 0000000..8417e0c
--- /dev/null
+++ b/includes/GameSession.h
@@ -0,0 +1,10 @@
+#ifndef GAMESESSION_H
+#define GAMESESSION_H
+
+class GameSession
+{
+public:
+ GameSession();
+};
+
+#endif // GAMESESSION_H
diff --git a/includes/interface/ControlFactory.h b/includes/interface/ControlFactory.h
new file mode 100644
index 0000000..8bfd780
--- /dev/null
+++ b/includes/interface/ControlFactory.h
@@ -0,0 +1,15 @@
+#ifndef CONTROLFACTORY_H
+#define CONTROLFACTORY_H
+
+#include "Panel.h"
+#include "Window.h"
+#include "GameSession.h"
+
+class ControlFactory
+{
+public:
+ static ui::Panel * MainMenu(GameSession * session, int x, int y, int width, int height);
+
+};
+
+#endif // CONTROLFACTORY_H