summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryRandomChoice8.h
blob: ca3a50d0eb0f7db1cef82132a01b71b85c086645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "KingSystem/ActorSystem/actAiQuery.h"

namespace uking::query {

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

}  // namespace uking::query