summaryrefslogtreecommitdiff
path: root/src/hand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hand.h')
-rw-r--r--src/hand.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/hand.h b/src/hand.h
new file mode 100644
index 0000000..9268fd8
--- /dev/null
+++ b/src/hand.h
@@ -0,0 +1,10 @@
+#ifndef OXEN_HAND_H
+#define OXEN_HAND_H
+
+#include "card.h"
+
+#define MAX_HAND_SIZE 10
+
+typedef card hand[MAX_HAND_SIZE];
+
+#endif // OXEN_HAND_H