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