summaryrefslogtreecommitdiff
path: root/src/table_stacks.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/table_stacks.h')
-rw-r--r--src/table_stacks.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/table_stacks.h b/src/table_stacks.h
new file mode 100644
index 0000000..57fddba
--- /dev/null
+++ b/src/table_stacks.h
@@ -0,0 +1,13 @@
+#ifndef OXEN_TABLE_STACKS_H
+#define OXEN_TABLE_STACKS_H
+
+#include "card_stack.h"
+
+#define NUM_TABLE_STACKS 4
+
+typedef struct
+{
+ card_stack_t stacks[NUM_TABLE_STACKS];
+} table_stacks_t;
+
+#endif // OXEN_TABLE_STACKS_H