15 lines
320 B
C
15 lines
320 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/player.h"
|
|
#include "pokerplayerui.h"
|
|
|
|
typedef struct {
|
|
pokerplayerui_t player[POKER_PLAYER_COUNT];
|
|
} pokerui_t; |