23 lines
462 B
C
23 lines
462 B
C
/**
|
|
* @file model_export.h
|
|
* @date 27/07/2022
|
|
* @author JackCarterSmith
|
|
* @copyright GPL-v3.0
|
|
* @brief Export datas to Waveform OBJ format.
|
|
*
|
|
*/
|
|
|
|
#ifndef MODEL_EXPORT_H_
|
|
#define MODEL_EXPORT_H_
|
|
|
|
|
|
typedef struct t_material {
|
|
unsigned short hasTexture;
|
|
unsigned short bpp;
|
|
unsigned int gl_tex_id;
|
|
} T_MATERIAL;
|
|
|
|
unsigned char exportOBJModel(T_RSPMODEL_OBJECT* hob_objects, const char *out_path, T_PROG_OPTIONS* p_opts);
|
|
|
|
#endif /* MODEL_EXPORT_H_ */
|