diff options
Diffstat (limited to 'mons_gltf/include/gltf.h')
-rw-r--r-- | mons_gltf/include/gltf.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mons_gltf/include/gltf.h b/mons_gltf/include/gltf.h new file mode 100644 index 0000000..d799f26 --- /dev/null +++ b/mons_gltf/include/gltf.h @@ -0,0 +1,11 @@ +#ifndef MONS_GLTF_H +#define MONS_GLTF_H + +#include "shader.h" +#include <stdio.h> + +struct mons_model; + +int mons_load_gltf(char *path, mons_program shader, struct mons_model **out, int *count); + +#endif |