2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2015-09-10 20:30:35 +00:00
|
|
|
|
|
|
|
#include "../../DNACommon/DNACommon.hpp"
|
|
|
|
#include "IScriptObject.hpp"
|
|
|
|
#include "Parameters.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace DataSpec::DNAMP1 {
|
|
|
|
struct TeamAIMgr : IScriptObject {
|
2019-08-11 00:49:41 +00:00
|
|
|
AT_DECL_DNA_YAMLV
|
2018-12-08 05:30:43 +00:00
|
|
|
String<-1> name;
|
|
|
|
Value<atUint32> aiCount;
|
|
|
|
Value<atUint32> meleeCount;
|
|
|
|
Value<atUint32> projectileCount;
|
|
|
|
Value<atUint32> unknownCount;
|
|
|
|
Value<atUint32> maxMeleeAttackerCount;
|
|
|
|
Value<atUint32> maxProjectileAttackerCount;
|
|
|
|
Value<atUint32> positionMode;
|
|
|
|
Value<float> meleeTimeInterval;
|
|
|
|
Value<float> projectileTimeInterval;
|
2015-09-10 20:30:35 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace DataSpec::DNAMP1
|