summaryrefslogtreecommitdiff
path: root/src/hand.h
diff options
context:
space:
mode:
authorMario Kilies <MarioKilies@GMX.net>2011-01-14 04:32:35 +0100
committerMario Kilies <MarioKilies@GMX.net>2011-01-14 04:32:35 +0100
commit9c855d16f1a737ddd9bde72e0fc51f4fd0a1e042 (patch)
tree6d7f46a8aef12232c7ffd12fc9369d3f339444f6 /src/hand.h
parent0dfe9ff514cb6e3ffe9bfd394aebeb54445edc03 (diff)
Implemented hand_sort(). ui_choose_card() now pre-selects the card with lowest index, if at index 0 is no card. draw_card() now draws empty placeholder cards, to clear old screen content.
Diffstat (limited to 'src/hand.h')
-rw-r--r--src/hand.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/hand.h b/src/hand.h
index f9feb6e..83c3160 100644
--- a/src/hand.h
+++ b/src/hand.h
@@ -7,4 +7,6 @@
typedef card hand[MAX_HAND_CARDS];
+void hand_sort(hand h);
+
#endif // OXEN_HAND_H