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