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