couch/core/Util.h

16 lines
216 B
C
Raw Normal View History

2021-01-18 18:25:47 -06:00
#ifndef UTIL_H
#define UTIL_H
// Thirdparty includes
#include <assimp/mesh.h>
// Gahhhhhh mutual inclusion!
#include "Mesh.h"
class Mesh;
namespace Util {
Mesh *aiMesh2Mesh(aiMesh *mesh);
}
#endif /* UTIL_H */