summaryrefslogtreecommitdiff
path: root/Game.h
diff options
context:
space:
mode:
Diffstat (limited to 'Game.h')
-rw-r--r--Game.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/Game.h b/Game.h
new file mode 100644
index 0000000..5021c87
--- /dev/null
+++ b/Game.h
@@ -0,0 +1,35 @@
+#ifndef GAMEPLAY_H__
+#define GAMEPLAY_H__
+
+/* **************************************
+ * Includes *
+ * **************************************/
+
+#include "HumanPlayer.h"
+#include <stdint.h>
+
+/* **************************************
+ * Defines *
+ * **************************************/
+
+/* **************************************
+ * Structs and enums *
+ * **************************************/
+
+struct tGameConfig
+{
+ HumanPlayer* pHumanPlayerData;
+ uint8_t u8NHumanPlayers;
+};
+
+/* **************************************
+ * Global prototypes *
+ * **************************************/
+
+void Game(const struct tGameConfig& psGameConfig);
+
+/* **************************************
+ * Global variables *
+ * **************************************/
+
+#endif /* GAMEPLAY_H__ */