blob: dbb273718779418ed9c1a7c72c41de6da5bb1610 (
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>
namespace uking::query {
RandomChoice3::RandomChoice3(const InitArg& arg) : ksys::act::ai::Query(arg) {}
RandomChoice3::~RandomChoice3() = default;
// FIXME: implement
int RandomChoice3::doQuery() {
return -1;
}
void RandomChoice3::loadParams(const evfl::QueryArg& arg) {}
void RandomChoice3::loadParams() {}
} // namespace uking::query
|