RSE-Model/RSEModel/obj_exporter.h

22 lines
462 B
C

/**
* \file obj_exporter.h
* \date 27/07/2022
* \author JackCarterSmith
* \copyright GPL-v3.0
* \brief Export datas to Waveform OBJ format.
*/
#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, T_PROG_OPTIONS* p_opts);
#endif /* SRC_OBJ_EXPORTER_H_ */