10 lines
205 B
C++
10 lines
205 B
C++
#ifndef __OBJ_WRITER_H__
|
|
#define __OBJ_WRITER_H__
|
|
|
|
#include "../../tiny_obj_loader.h"
|
|
|
|
extern bool WriteObj(const std::string& filename, std::vector<tinyobj::shape_t> shapes);
|
|
|
|
|
|
#endif // __OBJ_WRITER_H__
|