summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryCheckJustBeforeEventCancel.cpp
blob: 1fccc53ab6b5c9c01d0aed4810f5761e30df4ac4 (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