diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-03-05 20:50:20 +1100 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-03-05 20:50:20 +1100 |
commit | cd1f6de2fda8b29a55d9ca9abb7b31e774d8d165 (patch) | |
tree | 3d9dbd54b05ed1eb99b8eec55a78733f2bdefead /src/core.h | |
parent | 90dd96cbc9b09cdc75977b115a9b61fa7547baef (diff) |
add render types for material and texture
Diffstat (limited to 'src/core.h')
-rw-r--r-- | src/core.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,10 +13,11 @@ typedef struct core { input_state input; text_system_state text; screenspace_state screenspace; + model_darray* models; } core; // --- Lifecycle core* core_bringup(); void core_shutdown(core* core); -void core_input_update(core* core);
\ No newline at end of file +void core_input_update(core* core); |