20 lines
414 B
C
20 lines
414 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 "../display/primitive.h"
|
|
#include "../display/gui/font.h"
|
|
|
|
/** Representation of a Label UI Element */
|
|
typedef struct {
|
|
font_t *font;
|
|
float x, y, z;
|
|
float fontSize;
|
|
fonttextinfo_t info;
|
|
primitive_t primitive;
|
|
} label_t; |