2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 03:11:22 +00:00

27 lines
368 B
C++

#ifndef EGMC_HPP
#define EGMC_HPP
#include "DNACommon.hpp"
namespace Retro
{
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;
};
}
}
#endif // EGMC_HPP