12 lines
199 B
C
12 lines
199 B
C
#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
|