summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryGeneralChoice3.cpp
blob: d0c429ac44315080cb610ac5d18e10d63c5eea4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "Game/AI/Query/queryGeneralChoice3.h"
#include <evfl/query.h>

namespace uking::query {

GeneralChoice3::GeneralChoice3(const InitArg& arg) : ksys::act::ai::Query(arg) {}

GeneralChoice3::~GeneralChoice3() = default;

// FIXME: implement
int GeneralChoice3::doQuery() {
    return -1;
}

void GeneralChoice3::loadParams(const evfl::QueryArg& arg) {}

void GeneralChoice3::loadParams() {}

}  // namespace uking::query