diff options
| author | Mario Kilies <MarioKilies@GMX.net> | 2011-01-04 20:13:39 +0100 |
|---|---|---|
| committer | Mario Kilies <MarioKilies@GMX.net> | 2011-01-04 20:13:39 +0100 |
| commit | c076d1849d9ec07b87cde212d8db12dc890dc811 (patch) | |
| tree | 99446082551d1434e9c61b0de6dc5f31363daa9d /src/card.h | |
| parent | 5060d22270bc4c84cc5d16cf593e389e40f2b13f (diff) | |
Splitted up content from common.* to separate files (card.[ch], cardstack.[ch] and hand.h)
Diffstat (limited to 'src/card.h')
| -rw-r--r-- | src/card.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/card.h b/src/card.h new file mode 100644 index 0000000..2ec3ea4 --- /dev/null +++ b/src/card.h @@ -0,0 +1,10 @@ +#ifndef OXEN_CARD_H +#define OXEN_CARD_H + +#include <stdint.h> + +typedef char card; + +uint32_t card_get_points(const card c); + +#endif // OXEN_CARD_H |
