blob: 1b792e4a81fc79e92b02c5041e9e93e6760c80a2 (
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
|