Dawn/include/dawn/ui/frame.h
2021-08-11 09:48:56 -07:00

20 lines
397 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"
#define FRAME_BORDER_SIZE 16
#define FRAME_PRIMITIVE_COUNT 9
typedef struct {
float x, y, z;
texture_t *texture;
primitive_t primitive;
} frame_t;