mirror of
https://github.com/zeldaret/botw
synced 2026-06-21 07:52:31 -04:00
Generate stubs for queries
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#include "Game/AI/Query/queryCheckDieCnt.h"
|
||||
#include <evfl/query.h>
|
||||
|
||||
namespace uking::query {
|
||||
|
||||
CheckDieCnt::CheckDieCnt(const InitArg& arg) : ksys::act::ai::Query(arg) {}
|
||||
|
||||
CheckDieCnt::~CheckDieCnt() = default;
|
||||
|
||||
// FIXME: implement
|
||||
int CheckDieCnt::doQuery() {
|
||||
return -1;
|
||||
}
|
||||
|
||||
void CheckDieCnt::loadParams(const evfl::QueryArg& arg) {
|
||||
loadInt(arg.param_accessor, "Count");
|
||||
loadString(arg.param_accessor, "ActorName");
|
||||
}
|
||||
|
||||
void CheckDieCnt::loadParams() {
|
||||
getDynamicParam(&mCount, "Count");
|
||||
getDynamicParam(&mActorName, "ActorName");
|
||||
}
|
||||
|
||||
} // namespace uking::query
|
||||
Reference in New Issue
Block a user