17 lines
376 B
C
17 lines
376 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 "../../../ui/image.h"
|
|
#include "../../../display/framebuffer.h"
|
|
#include "../../../display/camera.h"
|
|
|
|
typedef struct {
|
|
label_t label;
|
|
} pokerplayerui_t; |