prosperon/source/engine/3d/model.h

25 lines
533 B
C

#ifndef MODEL_H
#define MODEL_H
struct mesh;
struct shader;
struct model {
struct mesh *meshes;
struct mesh *mp;
};
/* Get the model at a path, or create and return if it doesn't exist */
struct model *GetExistingModel(const char *path);
/* Make a Model struct */
struct model *MakeModel(const char *path);
/* Load a model from memory into the GPU */
void loadmodel(struct model *model);
void draw_model(struct model *model, struct shader *shader);
void draw_models(struct model *model, struct shader *shader);
#endif