2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-08-05 22:55:36 +00:00

UniqueID128 disassociation

This commit is contained in:
Jack Andersen 2016-03-03 18:39:51 -10:00
parent f9a067b9e7
commit 74ce228060

View File

@ -72,7 +72,12 @@ struct MLVL : BigYAML
Vector<String<-1>, DNA_COUNT(layerNameCount)> layerNames;
Value<atUint32> layerIDCount;
Vector<UniqueID128, DNA_COUNT(layerIDCount)> layerIDs;
struct LayerID : BigYAML
{
DECL_YAML
Value<atUint64> id[2];
};
Vector<LayerID, DNA_COUNT(layerIDCount)> layerIDs;
Value<atUint32> layerNameOffsetCount;
Vector<atUint32, DNA_COUNT(layerNameOffsetCount)> layerNameOffsets;