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
|
|
|
|
{
|
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
|
|
|
};
|
|
|
|
}
|
2016-01-14 07:24:17 +00:00
|
|
|
#endif // _DNACOMMON_EGMC_HPP_
|