OpenGL_Clock/Include/model.h
2018-04-23 00:42:08 +02:00

12 lines
169 B
C

#ifndef MODEL_LOADER_H
#define MODEL_LOADER_H
typedef struct _model {
GLfloat *buffer;
size_t bufsize;
} Model;
Model * model_load(const char *path);
#endif