mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-17 09:11:21 +00:00
17 lines
230 B
C++
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);
|
|
};
|
|
|
|
}
|
|
|