2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-08-13 07:29:00 +00:00
|
|
|
|
2018-06-29 20:21:36 +00:00
|
|
|
#include "DataSpec/DNACommon/DNACommon.hpp"
|
2015-09-26 03:12:08 +00:00
|
|
|
#include "../DNAMP2/CINF.hpp"
|
2015-08-13 07:29:00 +00:00
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP3
|
2015-08-13 07:29:00 +00:00
|
|
|
{
|
|
|
|
|
2015-09-26 03:12:08 +00:00
|
|
|
struct CINF : DNAMP2::CINF
|
2015-08-13 07:29:00 +00:00
|
|
|
{
|
2015-09-26 03:12:08 +00:00
|
|
|
Delete expl;
|
2017-12-29 08:08:12 +00:00
|
|
|
void sendCINFToBlender(hecl::blender::PyOutStream& os, const UniqueID64& cinfId) const;
|
2016-04-26 00:47:48 +00:00
|
|
|
static std::string GetCINFArmatureName(const UniqueID64& cinfId);
|
2015-08-13 07:29:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|