summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryGeneralChoice8.h
blob: 89d9050ce2a832f326d140b103d3cc1187c50a38 (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 GeneralChoice8 : public ksys::act::ai::Query {
    SEAD_RTTI_OVERRIDE(GeneralChoice8, Query)
public:
    explicit GeneralChoice8(const InitArg& arg);
    ~GeneralChoice8() override;
    int doQuery() override;

    void loadParams() override;
    void loadParams(const evfl::QueryArg& arg) override;
};

}  // namespace uking::query