#pragma once #include "../../DNACommon/DNACommon.hpp" #include "IScriptObject.hpp" #include "Parameters.hpp" namespace DataSpec::DNAMP1 { struct Waypoint : IScriptObject { AT_DECL_DNA_YAMLV String<-1> name; Value location; Value orientation; Value active; Value speed; Value pause; Value patternTranslate; Value patternOrient; Value patternFit; Value behaviour; Value behaviourOrient; Value behaviourModifiers; // 0x2: single, 0x4: double Value animation; }; } // namespace DataSpec::DNAMP1