RSE-Model/RSEModel/src/model_export.h
JackCarterSmith f2dc04a991
All checks were successful
JCS-Prod/RSE-Model/pipeline/pr-master This commit looks good
JCS-Prod/RSE-Model/pipeline/head This commit looks good
Final review
2022-08-24 18:53:24 +02:00

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_ */