mirror of
https://github.com/zeldaret/botw
synced 2026-06-09 12:36:01 -04:00
16 lines
333 B
C++
16 lines
333 B
C++
#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
|