mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 05:47:42 +00:00
Add EGMC for SCAN <-> Object relations
This commit is contained in:
26
DataSpec/DNACommon/EGMC.hpp
Normal file
26
DataSpec/DNACommon/EGMC.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user