metaforce/DataSpec/DNACommon/DeafBabe.hpp

23 lines
394 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
#include "DNACommon.hpp"
2016-02-13 09:02:47 +00:00
namespace DataSpec
{
enum class BspNodeType : atUint32
{
Invalid,
Branch,
Leaf
};
template<class DEAFBABE>
2017-12-29 08:08:12 +00:00
void DeafBabeSendToBlender(hecl::blender::PyOutStream& os, const DEAFBABE& db, bool isDcln = false, atInt32 idx = -1);
template<class DEAFBABE>
2017-12-29 08:08:12 +00:00
void DeafBabeBuildFromBlender(DEAFBABE& db, const hecl::blender::ColMesh& colMesh);
}