CX/include/model.h

13 lines
165 B
C
Raw Normal View History

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