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