blob: 532ee88a39ff079f86b8b53fafae4e49cf4616ad (
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 RandomChoice4 : public ksys::act::ai::Query {
SEAD_RTTI_OVERRIDE(RandomChoice4, Query)
public:
explicit RandomChoice4(const InitArg& arg);
~RandomChoice4() override;
int doQuery() override;
};
} // namespace uking::query
|