summaryrefslogtreecommitdiff
path: root/src/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.h')
-rw-r--r--src/player.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h
index 8b9059f..80f8df9 100644
--- a/src/player.h
+++ b/src/player.h
@@ -2,5 +2,14 @@
#define OXEN_PLAYER_H
#define MAX_PLAYER_NAME_LENGTH 10
+#define MAX_PLAYERS 10
+
+#include <stdint.h>
+
+struct player_list
+{
+ uint8_t count;
+ char* names[MAX_PLAYERS];
+};
#endif // OXEN_PLAYER_H