From f98d3ee758edfb888aaee926c1148dd6a77a103a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Mon, 21 Dec 2020 21:38:09 +0100 Subject: Generate stubs for queries --- src/Game/AI/Query/queryCheckEatActor.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/Game/AI/Query/queryCheckEatActor.cpp (limited to 'src/Game/AI/Query/queryCheckEatActor.cpp') diff --git a/src/Game/AI/Query/queryCheckEatActor.cpp b/src/Game/AI/Query/queryCheckEatActor.cpp new file mode 100644 index 00000000..123708d0 --- /dev/null +++ b/src/Game/AI/Query/queryCheckEatActor.cpp @@ -0,0 +1,24 @@ +#include "Game/AI/Query/queryCheckEatActor.h" +#include + +namespace uking::query { + +CheckEatActor::CheckEatActor(const InitArg& arg) : ksys::act::ai::Query(arg) {} + +CheckEatActor::~CheckEatActor() = default; + +// FIXME: implement +int CheckEatActor::doQuery() { + return -1; +} + +void CheckEatActor::loadParams(const evfl::QueryArg& arg) { + loadString(arg.param_accessor, "ActorName"); +} + +void CheckEatActor::loadParams() { + getDynamicParam(&mActorName, "ActorName"); + getAITreeVariable(&mPrevEatActorName, "PrevEatActorName"); +} + +} // namespace uking::query -- cgit v1.2.3