blob: 9d28802cbaf22b4ef9ebba866e49102438340565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "Game/AI/Query/queryCheckItemShopSelectBuy.h"
#include <evfl/Query.h>
namespace uking::query {
CheckItemShopSelectBuy::CheckItemShopSelectBuy(const InitArg& arg) : ksys::act::ai::Query(arg) {}
CheckItemShopSelectBuy::~CheckItemShopSelectBuy() = default;
// FIXME: implement
int CheckItemShopSelectBuy::doQuery() {
return -1;
}
void CheckItemShopSelectBuy::loadParams(const evfl::QueryArg& arg) {}
void CheckItemShopSelectBuy::loadParams() {}
} // namespace uking::query
|