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