blob: f87c6485b5b90b396a77da1e7d00ad683befb5ec (
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/queryComparePlayerMaxStamina.h"
#include <evfl/query.h>
namespace uking::query {
ComparePlayerMaxStamina::ComparePlayerMaxStamina(const InitArg& arg) : ksys::act::ai::Query(arg) {}
ComparePlayerMaxStamina::~ComparePlayerMaxStamina() = default;
// FIXME: implement
int ComparePlayerMaxStamina::doQuery() {
return -1;
}
void ComparePlayerMaxStamina::loadParams(const evfl::QueryArg& arg) {
loadInt(arg.param_accessor, "Threshold");
}
void ComparePlayerMaxStamina::loadParams() {
getDynamicParam(&mThreshold, "Threshold");
}
} // namespace uking::query
|