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