summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryCheckEatActor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Game/AI/Query/queryCheckEatActor.cpp')
-rw-r--r--src/Game/AI/Query/queryCheckEatActor.cpp24
1 files changed, 24 insertions, 0 deletions
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 <evfl/query.h>
+
+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