2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-07-24 01:51:15 +00:00
|
|
|
|
|
|
|
#include "../DNAMP1/SAVW.hpp"
|
|
|
|
#include "DNAMP2.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAMP2 {
|
|
|
|
struct SAVW : DNAMP1::SAVW {
|
|
|
|
AT_DECL_DNA_YAML
|
|
|
|
Value<atUint32> systemVarCount;
|
|
|
|
Vector<SAVWCommon::EnvironmentVariable, AT_DNA_COUNT(systemVarCount)> systemVars;
|
|
|
|
Value<atUint32> gameVarCount;
|
|
|
|
Vector<SAVWCommon::EnvironmentVariable, AT_DNA_COUNT(gameVarCount)> gameVars;
|
|
|
|
Value<atUint32> gameObjectCount;
|
|
|
|
Vector<atUint32, AT_DNA_COUNT(gameObjectCount)> gameObjects;
|
2016-07-24 01:51:15 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec::DNAMP2
|