summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/queryDummyQuery.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-12-21 16:41:28 +0100
committerLéo Lam <leo@leolam.fr>2020-12-21 16:53:44 +0100
commitb1470e45fad6a43bb2583aed7f6e9bce3172f0bf (patch)
tree52314b2d75328d3166a7b6ed6ab74559752cf0f4 /src/KingSystem/ActorSystem/queryDummyQuery.cpp
parent64b93c984e2109771f7b8210f6906f2069316ba1 (diff)
ksys/act: Add Queries
Diffstat (limited to 'src/KingSystem/ActorSystem/queryDummyQuery.cpp')
-rw-r--r--src/KingSystem/ActorSystem/queryDummyQuery.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/KingSystem/ActorSystem/queryDummyQuery.cpp b/src/KingSystem/ActorSystem/queryDummyQuery.cpp
new file mode 100644
index 00000000..2fdc4406
--- /dev/null
+++ b/src/KingSystem/ActorSystem/queryDummyQuery.cpp
@@ -0,0 +1,13 @@
+#include "KingSystem/ActorSystem/queryDummyQuery.h"
+
+namespace ksys::act::ai {
+
+DummyQuery::DummyQuery(const Query::InitArg& arg) : Query(arg) {}
+
+bool DummyQuery::init_(sead::Heap* heap) {
+ return true;
+}
+
+void DummyQuery::loadParams() {}
+
+} // namespace ksys::act::ai