mirror of
https://github.com/zeldaret/botw
synced 2026-06-09 12:36:01 -04:00
24 lines
485 B
C++
24 lines
485 B
C++
#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
|