#pragma once #include "../../DNACommon/DNACommon.hpp" #include "IScriptObject.hpp" #include "Parameters.hpp" namespace DataSpec::DNAMP1 { struct TeamAIMgr : IScriptObject { AT_DECL_DNA_YAMLV String<-1> name; Value aiCount; Value meleeCount; Value projectileCount; Value unknownCount; Value maxMeleeAttackerCount; Value maxProjectileAttackerCount; Value positionMode; Value meleeTimeInterval; Value projectileTimeInterval; }; } // namespace DataSpec::DNAMP1