metaforce/DataSpec/DNACommon/OBBTreeBuilder.hpp

17 lines
230 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2017-10-17 05:51:53 +00:00
#include "DNACommon.hpp"
namespace DataSpec
{
struct OBBTreeBuilder
{
2017-12-29 08:08:12 +00:00
using ColMesh = hecl::blender::ColMesh;
2017-10-17 05:51:53 +00:00
template <typename Node>
static std::unique_ptr<Node> buildCol(const ColMesh& mesh);
};
}