Reordered ui layer input struct

main
noah metz 2024-10-21 14:49:40 -06:00
parent ab58c63a50
commit 294fd0beb2
1 changed files with 1 additions and 2 deletions

@ -211,12 +211,11 @@ typedef struct UILayerInputStruct {
uint32_t num_strings; uint32_t num_strings;
uint32_t num_codes; uint32_t num_codes;
uint32_t num_drawables; uint32_t num_drawables;
uint32_t font;
UIString* strings; UIString* strings;
uint32_t* codes; uint32_t* codes;
UIDrawable* drawables; UIDrawable* drawables;
uint32_t font;
} UILayerInput; } UILayerInput;
typedef struct UIContainerInputStruct { typedef struct UIContainerInputStruct {