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