metaforce/DataSpec/DNACommon/EGMC.hpp

19 lines
334 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2016-01-14 07:22:43 +00:00
#include "DNACommon.hpp"
2018-12-08 05:30:43 +00:00
namespace DataSpec::DNACommon {
struct EGMC : public BigDNA {
AT_DECL_DNA
Value<atUint32> count;
2016-01-14 07:22:43 +00:00
2018-12-08 05:30:43 +00:00
struct Object : BigDNA {
AT_DECL_DNA
Value<atUint32> mesh;
Value<atUint32> instanceId;
};
2016-01-14 07:22:43 +00:00
2018-12-08 05:30:43 +00:00
Vector<Object, AT_DNA_COUNT(count)> objects;
2016-01-14 07:22:43 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace DataSpec::DNACommon