Generate stubs for queries

This commit is contained in:
Léo Lam
2020-12-21 21:38:09 +01:00
parent 60b2362ddc
commit f98d3ee758
336 changed files with 8410 additions and 1085 deletions
+25
View File
@@ -0,0 +1,25 @@
#include "Game/AI/Query/queryCheckFadeState.h"
#include <evfl/query.h>
namespace uking::query {
CheckFadeState::CheckFadeState(const InitArg& arg) : ksys::act::ai::Query(arg) {}
CheckFadeState::~CheckFadeState() = default;
// FIXME: implement
int CheckFadeState::doQuery() {
return -1;
}
void CheckFadeState::loadParams(const evfl::QueryArg& arg) {
loadInt(arg.param_accessor, "FadeType");
loadInt(arg.param_accessor, "State");
}
void CheckFadeState::loadParams() {
getDynamicParam(&mFadeType, "FadeType");
getDynamicParam(&mState, "State");
}
} // namespace uking::query