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