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

namespace uking::query {

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

CheckRupee::~CheckRupee() = default;

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

void CheckRupee::loadParams(const evfl::QueryArg& arg) {
    loadInt(arg.param_accessor, "Value");
}

void CheckRupee::loadParams() {
    getDynamicParam(&mValue, "Value");
}

}  // namespace uking::query