You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
397 B
13 lines
397 B
#ifndef MODEL_H
|
|
#define MODEL_H
|
|
|
|
#include "../common/linmath.h"
|
|
|
|
struct Entity;
|
|
|
|
void model_create(struct Entity* entity, const char* geo_name, const char* material_name);
|
|
void model_destroy(struct Entity* entity);
|
|
int model_set_material_param(struct Entity* entity, const char* name, void* value);
|
|
int model_get_material_param(struct Entity* entity, const char* name, void* value_out);
|
|
|
|
#endif
|
|
|