blob: c46b420b49ca891108ec0049d0768a4ec72aeba9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include "KingSystem/ActorSystem/actAiQuery.h"
namespace uking::query {
class GeneralChoice4 : public ksys::act::ai::Query {
SEAD_RTTI_OVERRIDE(GeneralChoice4, Query)
public:
explicit GeneralChoice4(const InitArg& arg);
~GeneralChoice4() override;
int doQuery() override;
void loadParams() override;
void loadParams(const evfl::QueryArg& arg) override;
};
} // namespace uking::query
|