2016-07-24 01:51:15 +00:00
|
|
|
#ifndef __DNAMP2_SAVW_HPP__
|
|
|
|
#define __DNAMP2_SAVW_HPP__
|
|
|
|
|
|
|
|
#include "../DNAMP1/SAVW.hpp"
|
|
|
|
#include "DNAMP2.hpp"
|
|
|
|
|
2017-12-29 08:08:12 +00:00
|
|
|
namespace DataSpec::DNAMP2
|
2016-07-24 01:51:15 +00:00
|
|
|
{
|
|
|
|
struct SAVW : DNAMP1::SAVW
|
|
|
|
{
|
2018-02-22 07:24:51 +00:00
|
|
|
AT_DECL_DNA_YAML
|
2016-07-24 01:51:15 +00:00
|
|
|
Value<atUint32> systemVarCount;
|
2018-02-25 08:23:27 +00:00
|
|
|
Vector<SAVWCommon::EnvironmentVariable, AT_DNA_COUNT(systemVarCount)> systemVars;
|
2016-07-24 01:51:15 +00:00
|
|
|
Value<atUint32> gameVarCount;
|
2018-02-25 08:23:27 +00:00
|
|
|
Vector<SAVWCommon::EnvironmentVariable, AT_DNA_COUNT(gameVarCount)> gameVars;
|
2016-07-24 01:51:15 +00:00
|
|
|
Value<atUint32> gameObjectCount;
|
2018-02-25 08:23:27 +00:00
|
|
|
Vector<atUint32, AT_DNA_COUNT(gameObjectCount)> gameObjects;
|
2016-07-24 01:51:15 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __DNAMP2_SAVW_HPP__
|