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