diff options
Diffstat (limited to 'src/Game/AI/Query/queryRandomChoice4.h')
| -rw-r--r-- | src/Game/AI/Query/queryRandomChoice4.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Game/AI/Query/queryRandomChoice4.h b/src/Game/AI/Query/queryRandomChoice4.h new file mode 100644 index 00000000..a0b1b4be --- /dev/null +++ b/src/Game/AI/Query/queryRandomChoice4.h @@ -0,0 +1,18 @@ +#pragma once + +#include "KingSystem/ActorSystem/actAiQuery.h" + +namespace uking::query { + +class RandomChoice4 : public ksys::act::ai::Query { + SEAD_RTTI_OVERRIDE(RandomChoice4, Query) +public: + explicit RandomChoice4(const InitArg& arg); + ~RandomChoice4() override; + int doQuery() override; + + void loadParams() override; + void loadParams(const evfl::QueryArg& arg) override; +}; + +} // namespace uking::query |
