metaforce/DataSpec/DNACommon/EGMC.hpp

27 lines
407 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"
2016-02-13 09:02:47 +00:00
namespace DataSpec
2016-01-14 07:22:43 +00:00
{
namespace DNACommon
{
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_