mirror of https://github.com/AxioDL/metaforce.git
16 lines
405 B
C++
16 lines
405 B
C++
#pragma once
|
|
|
|
#include "DNACommon.hpp"
|
|
|
|
namespace DataSpec {
|
|
|
|
enum class BspNodeType : atUint32 { Invalid, Branch, Leaf };
|
|
|
|
template <class DEAFBABE>
|
|
void DeafBabeSendToBlender(hecl::blender::PyOutStream& os, const DEAFBABE& db, bool isDcln = false, atInt32 idx = -1);
|
|
|
|
template <class DEAFBABE>
|
|
void DeafBabeBuildFromBlender(DEAFBABE& db, const hecl::blender::ColMesh& colMesh);
|
|
|
|
} // namespace DataSpec
|