CX/include/model.h
Marcel Plch 9c5b5d7471
Import simplified code.
Code imported from my seminary work.
In this simplified version it rotates a triangle
using OpenGL libraries.

Crashes upon exit.
2023-10-25 15:02:23 +02:00

12 lines
165 B
C

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