mirror of
https://github.com/zeldaret/botw
synced 2026-05-23 15:01:35 -04:00
20 lines
467 B
C++
20 lines
467 B
C++
#include "Game/AI/Query/queryCheckItemShopSelect.h"
|
|
#include <evfl/query.h>
|
|
|
|
namespace uking::query {
|
|
|
|
CheckItemShopSelect::CheckItemShopSelect(const InitArg& arg) : ksys::act::ai::Query(arg) {}
|
|
|
|
CheckItemShopSelect::~CheckItemShopSelect() = default;
|
|
|
|
// FIXME: implement
|
|
int CheckItemShopSelect::doQuery() {
|
|
return -1;
|
|
}
|
|
|
|
void CheckItemShopSelect::loadParams(const evfl::QueryArg& arg) {}
|
|
|
|
void CheckItemShopSelect::loadParams() {}
|
|
|
|
} // namespace uking::query
|