Added Full House
This commit is contained in:
@ -76,10 +76,10 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Suits
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
#define CARD_SUIT_CLUBS 0x0D
|
||||
#define CARD_SUIT_DIAMONDS 0x1A
|
||||
#define CARD_SUIT_HEARTS 0x27
|
||||
#define CARD_SUIT_SPADES 0x34
|
||||
#define CARD_SUIT_CLUBS 0x00
|
||||
#define CARD_SUIT_DIAMONDS 0x01
|
||||
#define CARD_SUIT_HEARTS 0x02
|
||||
#define CARD_SUIT_SPADES 0x03
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Card numbers
|
||||
@ -101,6 +101,9 @@
|
||||
/** Count of cards in each suit */
|
||||
#define CARD_COUNT_PER_SUIT 13
|
||||
|
||||
/** Count of suits */
|
||||
#define CARD_SUIT_COUNT 4
|
||||
|
||||
/** Standard Card Deck Size */
|
||||
#define CARD_DECK_SIZE 52
|
||||
|
||||
|
@ -15,4 +15,4 @@
|
||||
* @param right The right element in the array.
|
||||
* @return -1 for Left priority, 1 for Right and 0 for Equal.
|
||||
*/
|
||||
typedef int32_t *arraysort_t(void const*, void const*);
|
||||
typedef int32_t *arraysort_t(void*, void*);
|
Reference in New Issue
Block a user