21 lines
379 B
C
21 lines
379 B
C
/*
|
|
* obj_exporter.h
|
|
*
|
|
* Created on: 27 juil. 2022
|
|
* Author: JackCarterSmith
|
|
*/
|
|
|
|
#ifndef SRC_OBJ_EXPORTER_H_
|
|
#define SRC_OBJ_EXPORTER_H_
|
|
|
|
|
|
typedef struct t_material {
|
|
unsigned short hasTexture;
|
|
unsigned short bpp;
|
|
unsigned int gl_tex_id;
|
|
} T_MATERIAL;
|
|
|
|
unsigned char exportOBJModel(T_HOB_OBJECT* hob_objects, const char *out_path);
|
|
|
|
#endif /* SRC_OBJ_EXPORTER_H_ */
|