diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-10 13:35:23 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-10 13:35:23 +1000 |
commit | 99f2476d7bb8479d543f080c209324c77c775737 (patch) | |
tree | 8c8f52155552fb7c9ade94e70f5f11d36fa73701 /src/core.h | |
parent | b9a7166d9a7e2b0eed948353c134e72dfa86ab58 (diff) |
bring back gltf
Diffstat (limited to 'src/core.h')
-rw-r--r-- | src/core.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,7 @@ #pragma once #include "input.h" +#include "render_types.h" #include "scene.h" #include "screenspace.h" #include "terrain.h" @@ -19,7 +20,8 @@ typedef struct core { screenspace_state screenspace; // data storage scene default_scene; - model_darray* models; + model_pool models; + // model_darray* models; } core; core* get_global_core(); |