blob: 7ff555df8fe597aa18cad9c2d99243599e758647 (
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
|