#ifndef _DNAMP1_CINF_HPP_ #define _DNAMP1_CINF_HPP_ #include "../DNACommon/DNACommon.hpp" namespace Retro { namespace DNAMP1 { struct CINF : BigDNA { DECL_DNA Value boneCount; struct Bone : BigDNA { DECL_DNA Value id; Value parentId; Value origin; Value linkedCount; Vector linked; }; Vector bones; Value boneIdCount; Vector boneIds; Value nameCount; struct Name : BigDNA { DECL_DNA String<-1> name; Value boneId; }; Vector names; }; } } #endif // _DNAMP1_CINF_HPP_