20 lines
396 B
C
20 lines
396 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 "../../ui/label.h"
|
|
#include "../../poker/player.h"
|
|
|
|
typedef struct {
|
|
label_t labelChips;
|
|
label_t labelName;
|
|
} pokerplayerui_t;
|
|
|
|
typedef struct {
|
|
pokerplayerui_t players[POKER_PLAYER_COUNT];
|
|
} pokerui_t; |