diff options
| author | Léo Lam <leo@leolam.fr> | 2020-12-21 16:41:28 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-12-21 16:53:44 +0100 |
| commit | b1470e45fad6a43bb2583aed7f6e9bce3172f0bf (patch) | |
| tree | 52314b2d75328d3166a7b6ed6ab74559752cf0f4 /src/KingSystem/ActorSystem/queryDummyQuery.cpp | |
| parent | 64b93c984e2109771f7b8210f6906f2069316ba1 (diff) | |
ksys/act: Add Queries
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 |
