2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-17 13:11:22 +00:00
2018-10-06 17:42:33 -10:00

23 lines
394 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);
}