metaforce/DataSpec/DNACommon/DeafBabe.hpp

26 lines
521 B
C++
Raw Normal View History

#ifndef _DNACOMMON_DEAFBABE_HPP_
#define _DNACOMMON_DEAFBABE_HPP_
#include "DNACommon.hpp"
2016-09-18 23:47:48 +00:00
#include "hecl/Blender/BlenderConnection.hpp"
2016-02-13 09:02:47 +00:00
namespace DataSpec
{
enum class BspNodeType : atUint32
{
Invalid,
Branch,
Leaf
};
template<class DEAFBABE>
void DeafBabeSendToBlender(hecl::BlenderConnection::PyOutStream& os, const DEAFBABE& db);
template<class DEAFBABE>
void DeafBabeBuildFromBlender(DEAFBABE& db, const hecl::BlenderConnection::DataStream::ColMesh& colMesh);
}
#endif // _DNACOMMON_DEAFBABE_HPP_