2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-17 09:11:21 +00:00
metaforce/DataSpec/DNACommon/OBBTreeBuilder.hpp
2018-10-06 17:42:33 -10:00

17 lines
230 B
C++

#pragma once
#include "DNACommon.hpp"
namespace DataSpec
{
struct OBBTreeBuilder
{
using ColMesh = hecl::blender::ColMesh;
template <typename Node>
static std::unique_ptr<Node> buildCol(const ColMesh& mesh);
};
}