diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-27 15:58:03 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-27 15:58:03 +1000 |
commit | c72440f89cfabe0c7752f9105cfc244a79016965 (patch) | |
tree | 8c5a8b0ebe69dd99471497e39da2fa224e52402a /src/core.h | |
parent | 4e6897aa8c8769a556ad58081eba5a90226e551d (diff) |
expanding desired containers
Diffstat (limited to 'src/core.h')
-rw-r--r-- | src/core.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3,18 +3,22 @@ #include "defines.h" #include "input.h" #include "ral.h" -// #include "render_types.h" +#include "terrain.h" #include "screenspace.h" #include "text.h" #include "threadpool.h" typedef struct core { - // TODO: Add application name + const char* app_name; + // foundations renderer renderer; threadpool threadpool; + // systems input_state input; text_system_state text; + terrain_state terrain; screenspace_state screenspace; + // data storage model_darray* models; } core; |