mirror of
https://github.com/zeldaret/botw
synced 2026-05-28 08:25:01 -04:00
Generate stubs for queries
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#include "Game/AI/Query/queryCheckActorAction.h"
|
||||
#include <evfl/query.h>
|
||||
|
||||
namespace uking::query {
|
||||
|
||||
CheckActorAction::CheckActorAction(const InitArg& arg) : ksys::act::ai::Query(arg) {}
|
||||
|
||||
CheckActorAction::~CheckActorAction() = default;
|
||||
|
||||
// FIXME: implement
|
||||
int CheckActorAction::doQuery() {
|
||||
return -1;
|
||||
}
|
||||
|
||||
void CheckActorAction::loadParams(const evfl::QueryArg& arg) {
|
||||
loadString(arg.param_accessor, "ActionName");
|
||||
}
|
||||
|
||||
void CheckActorAction::loadParams() {
|
||||
getDynamicParam(&mActionName, "ActionName");
|
||||
}
|
||||
|
||||
} // namespace uking::query
|
||||
Reference in New Issue
Block a user