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/resources/loaders.h | |
parent | b9a7166d9a7e2b0eed948353c134e72dfa86ab58 (diff) |
bring back gltf
Diffstat (limited to 'src/resources/loaders.h')
-rw-r--r-- | src/resources/loaders.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/loaders.h b/src/resources/loaders.h index 858e4d1..fe03ed9 100644 --- a/src/resources/loaders.h +++ b/src/resources/loaders.h @@ -5,5 +5,5 @@ struct core; -model_handle model_load_obj(struct core *core, const char *path, bool invert_texture_y); -model_handle model_load_gltf(struct core *core, const char *path, bool invert_texture_y); +model_handle model_load_obj(const char *path, bool invert_texture_y); +model_handle model_load_gltf(const char *path, bool invert_texture_y); |