mirror of
https://github.com/zeldaret/botw
synced 2026-05-25 07:22:56 -04:00
Generate stubs for queries
This commit is contained in:
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user