summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryHasPouchItemByPouchCategory.h
blob: 1a2a77de56b207e3ca7c3e07e5e889d56726e610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include "KingSystem/ActorSystem/actAiQuery.h"

namespace uking::query {

class HasPouchItemByPouchCategory : public ksys::act::ai::Query {
    SEAD_RTTI_OVERRIDE(HasPouchItemByPouchCategory, Query)
public:
    explicit HasPouchItemByPouchCategory(const InitArg& arg);
    ~HasPouchItemByPouchCategory() override;
    int doQuery() override;

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

protected:
    int* mCategory{};
    int* mCount{};
};

}  // namespace uking::query