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