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