metaforce/DataSpec/DNACommon/EGMC.hpp

22 lines
327 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"
2017-12-29 08:08:12 +00:00
namespace DataSpec::DNACommon
2016-01-14 07:22:43 +00:00
{
struct EGMC : public BigDNA
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA
2016-01-14 07:22:43 +00:00
Value<atUint32> count;
struct Object : BigDNA
{
2018-02-22 07:24:51 +00:00
AT_DECL_DNA
2016-01-14 07:22:43 +00:00
Value<atUint32> mesh;
Value<atUint32> instanceId;
};
2018-02-25 08:23:27 +00:00
Vector<Object, AT_DNA_COUNT(count)> objects;
2016-01-14 07:22:43 +00:00
};
}