summaryrefslogtreecommitdiff
path: root/src/hand.h
diff options
context:
space:
mode:
authorMario Kilies <MarioKilies@GMX.net>2011-01-13 04:33:37 +0100
committerMario Kilies <MarioKilies@GMX.net>2011-01-13 04:33:37 +0100
commit21cfa1fc0fdc08bb88abba9b3b4c614503f4b6e2 (patch)
tree5097b34e33e6ac68b27a8d34a082cc04b815686c /src/hand.h
parentbad22fc13925219a2dac07c7c7e4335c704e9e79 (diff)
Introduced ncurses windows and started implementation of user interface.
Diffstat (limited to 'src/hand.h')
-rw-r--r--src/hand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hand.h b/src/hand.h
index 9268fd8..f9feb6e 100644
--- a/src/hand.h
+++ b/src/hand.h
@@ -3,8 +3,8 @@
#include "card.h"
-#define MAX_HAND_SIZE 10
+#define MAX_HAND_CARDS 10
-typedef card hand[MAX_HAND_SIZE];
+typedef card hand[MAX_HAND_CARDS];
#endif // OXEN_HAND_H