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