blob: d799f266ea9cf492ff5df8b10304a2413bc82baa (
plain)
1
2
3
4
5
6
7
8
9
10
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
|