mirror of https://github.com/AxioDL/metaforce.git
19 lines
352 B
C++
19 lines
352 B
C++
|
#ifndef DNACOMMON_OBBTREEBUILDER_HPP
|
||
|
#define DNACOMMON_OBBTREEBUILDER_HPP
|
||
|
|
||
|
#include "DNACommon.hpp"
|
||
|
|
||
|
namespace DataSpec
|
||
|
{
|
||
|
|
||
|
struct OBBTreeBuilder
|
||
|
{
|
||
|
using ColMesh = hecl::BlenderConnection::DataStream::ColMesh;
|
||
|
template <typename Node>
|
||
|
static std::unique_ptr<Node> buildCol(const ColMesh& mesh);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // DNACOMMON_OBBTREEBUILDER_HPP
|