mirror of https://github.com/AxioDL/metaforce.git
20 lines
395 B
C++
20 lines
395 B
C++
#ifndef _DNAMP3_CINF_HPP_
|
|
#define _DNAMP3_CINF_HPP_
|
|
|
|
#include "../DNACommon/DNACommon.hpp"
|
|
#include "../DNAMP2/CINF.hpp"
|
|
|
|
namespace DataSpec::DNAMP3
|
|
{
|
|
|
|
struct CINF : DNAMP2::CINF
|
|
{
|
|
Delete expl;
|
|
void sendCINFToBlender(hecl::blender::PyOutStream& os, const UniqueID64& cinfId) const;
|
|
static std::string GetCINFArmatureName(const UniqueID64& cinfId);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // _DNAMP3_CINF_HPP_
|