Dawn/include/dawn/ui/label.h
2021-08-30 09:38:24 -07:00

20 lines
410 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/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;