OpenGL_Clock/Include/model.h

13 lines
169 B
C
Raw Normal View History

2018-04-22 22:40:31 +00:00
#ifndef MODEL_LOADER_H
#define MODEL_LOADER_H
typedef struct _model {
GLfloat *buffer;
size_t bufsize;
} Model;
Model * model_load(const char *path);
#endif