summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authorMario Kilies <MarioKilies@GMX.net>2011-01-04 20:13:39 +0100
committerMario Kilies <MarioKilies@GMX.net>2011-01-04 20:13:39 +0100
commitc076d1849d9ec07b87cde212d8db12dc890dc811 (patch)
tree99446082551d1434e9c61b0de6dc5f31363daa9d /src/common.h
parent5060d22270bc4c84cc5d16cf593e389e40f2b13f (diff)
Splitted up content from common.* to separate files (card.[ch], cardstack.[ch] and hand.h)
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/common.h b/src/common.h
deleted file mode 100644
index 5bd31f7..0000000
--- a/src/common.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef OXEN_COMMON_H
-#define OXEN_COMMON_H
-
-#include <stdint.h>
-
-#define MAX_CARDSTACK_SIZE 5
-#define MAX_HAND_SIZE 10
-
-typedef char card;
-typedef card cardstack[MAX_CARDSTACK_SIZE];
-typedef card hand[MAX_HAND_SIZE];
-
-uint32_t cardpoints(const card c);
-uint32_t stackpoints(const cardstack s);
-
-#endif // OXEN_COMMON_H