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