diff options
| author | Léo Lam <leo@leolam.fr> | 2020-12-05 00:58:14 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-12-05 01:02:17 +0100 |
| commit | aea46fce5e24bff47133547d9ed9f246ab8536e4 (patch) | |
| tree | 62d3308cc4ac39a6ea270d27e87940014a365af4 /src/KingSystem/ActorSystem/actAiQuery.cpp | |
| parent | 5672fd9397052f31810581df749be6e40dc57f4a (diff) | |
ksys/act: Start adding base Query class
Diffstat (limited to 'src/KingSystem/ActorSystem/actAiQuery.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/actAiQuery.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/KingSystem/ActorSystem/actAiQuery.cpp b/src/KingSystem/ActorSystem/actAiQuery.cpp new file mode 100644 index 00000000..3c997249 --- /dev/null +++ b/src/KingSystem/ActorSystem/actAiQuery.cpp @@ -0,0 +1,7 @@ +#include "KingSystem/ActorSystem/actAiQuery.h" + +namespace ksys::act::ai { + +Query::Query(const InitArg& arg) : mProc(arg.proc), mDefIdx(arg.def_idx) {} + +} // namespace ksys::act::ai |
