blob: 7b207a9648b42c627e1a2b77b40102f1acd28521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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
|