2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 22:27:41 +00:00

Massive template-based DNA refactor

This commit is contained in:
Jack Andersen
2018-02-21 21:24:51 -10:00
parent b405f33ded
commit e4ff23c279
265 changed files with 3993 additions and 5773 deletions

View File

@@ -9,11 +9,11 @@ namespace DataSpec::DNAMP2
struct CINF : BigDNA
{
DECL_DNA
AT_DECL_DNA
Value<atUint32> boneCount;
struct Bone : BigDNA
{
DECL_DNA
AT_DECL_DNA
Value<atUint32> id;
Value<atUint32> parentId;
Value<atVec3f> origin;
@@ -30,7 +30,7 @@ struct CINF : BigDNA
Value<atUint32> nameCount;
struct Name : BigDNA
{
DECL_DNA
AT_DECL_DNA
String<-1> name;
Value<atUint32> boneId;
};