metaforce/DataSpec/DNACommon/EGMC.hpp

24 lines
394 B
C++
Raw Normal View History

2016-01-14 07:24:17 +00:00
#ifndef _DNACOMMON_EGMC_HPP_
#define _DNACOMMON_EGMC_HPP_
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
{
DECL_DNA
Value<atUint32> count;
struct Object : BigDNA
{
DECL_DNA
Value<atUint32> mesh;
Value<atUint32> instanceId;
};
Vector<Object, DNA_COUNT(count)> objects;
};
}
2016-01-14 07:24:17 +00:00
#endif // _DNACOMMON_EGMC_HPP_