Improved Language Support

This commit is contained in:
2021-08-04 21:58:31 -07:00
parent 23f1cb3d7e
commit b62beee3e4
13 changed files with 221 additions and 43 deletions

View File

@ -8,7 +8,13 @@
#pragma once
#include "../../libs.h"
#include "../../ui/label.h"
#include "../../poker/player.h"
typedef struct {
label_t labelTest;
label_t labelChips;
label_t labelName;
} pokerplayerui_t;
typedef struct {
pokerplayerui_t players[POKER_PLAYER_COUNT];
} pokerui_t;