blob: da0f4e544ec3b84cb9f1b39e75f16564c0f763a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "Game/AI/Query/queryRandomChoice3.h"
#include <evfl/query.h>
#include <random/seadGlobalRandom.h>
namespace uking::query {
RandomChoice3::RandomChoice3(const InitArg& arg) : ksys::act::ai::Query(arg) {}
RandomChoice3::~RandomChoice3() = default;
int RandomChoice3::doQuery() {
return sead::GlobalRandom::instance()->getU32(3);
}
void RandomChoice3::loadParams(const evfl::QueryArg& arg) {}
void RandomChoice3::loadParams() {}
} // namespace uking::query
|