Bruh? 😳
This commit is contained in:
27
src/poker/poker.h
Normal file
27
src/poker/poker.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* Copyright (c) 2022 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "../libs.h"
|
||||
#include "card.h"
|
||||
#include "player.h"
|
||||
|
||||
#define POKER_COMMUNITY_SIZE_MAX 5
|
||||
|
||||
extern uint8_t POKER_DECK[];
|
||||
extern uint8_t POKER_DECK_SIZE;
|
||||
|
||||
extern uint8_t POKER_COMMUNITY[];
|
||||
extern uint8_t POKER_COMMUNITY_SIZE;
|
||||
|
||||
extern uint8_t POKER_PLAYER_DEALER;
|
||||
extern uint8_t POKER_PLAYER_SMALL_BLIND;
|
||||
extern uint8_t POKER_PLAYER_BIG_BLIND;
|
||||
|
||||
void pokerInit();
|
||||
|
||||
void pokerNewRound();
|
Reference in New Issue
Block a user