diff options
Diffstat (limited to 'src/KingSystem/ActorSystem/queryDummyQuery.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/queryDummyQuery.cpp | 13 |
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 |
