18 lines
358 B
C
18 lines
358 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../../libs.h"
|
|
#include "../../poker/poker.h"
|
|
|
|
/** Name of the Poker Game */
|
|
#define POKER_GAME_NAME "Dawn Poker Game"
|
|
|
|
typedef struct {
|
|
/** Poker Game State */
|
|
poker_t poker;
|
|
} pokergame_t; |