blob: d7a5d864e5681048fa53791e3c0e5c1dc8cd828f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "Game/AI/Query/queryCheckCookResultStatus.h"
#include <evfl/query.h>
namespace uking::query {
CheckCookResultStatus::CheckCookResultStatus(const InitArg& arg) : ksys::act::ai::Query(arg) {}
CheckCookResultStatus::~CheckCookResultStatus() = default;
// FIXME: implement
int CheckCookResultStatus::doQuery() {
return -1;
}
void CheckCookResultStatus::loadParams(const evfl::QueryArg& arg) {
loadInt(arg.param_accessor, "CheckType");
}
void CheckCookResultStatus::loadParams() {
getDynamicParam(&mCheckType, "CheckType");
getAITreeVariable(&mCurrentCookResultHolder, "CurrentCookResultHolder");
}
} // namespace uking::query
|