blob: 57fddba5dca017bdb36aa1ae1c2d39255b124ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|