Render x/y for UI elements.
This commit is contained in:
14
include/dawn/game/poker/ui/pokerplayerui.h
Normal file
14
include/dawn/game/poker/ui/pokerplayerui.h
Normal file
@ -0,0 +1,14 @@
|
||||
/**
|
||||
* 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"
|
||||
|
||||
typedef struct {
|
||||
label_t label;
|
||||
} pokerplayerui_t;
|
15
include/dawn/game/poker/ui/pokerui.h
Normal file
15
include/dawn/game/poker/ui/pokerui.h
Normal file
@ -0,0 +1,15 @@
|
||||
/**
|
||||
* 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;
|
Reference in New Issue
Block a user