1
0
forked from me/IronOS

Fixing import loop

This commit is contained in:
Ben V. Brown
2023-06-29 20:26:00 +10:00
parent 7535a64bc7
commit c31fb5725b
10 changed files with 62 additions and 42 deletions

View File

@@ -1,5 +1,6 @@
#pragma once
#include "UI.h"
#include <stdint.h>
typedef enum {
Text, // Basic text splat, using re-encoded strings
Number, // Draws numbers using best size for the height (always one line)
@@ -23,5 +24,3 @@ typedef struct {
} size;
} ElementSettings_t;
void ui_render_element(const ElementTypes_t element,const ElementSettings_t * settings, screen_arg_t *args);