blob: 14535fd0befd65bea056123baab6d0b202e1e148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|