summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryIsPlayerGrounded.cpp
blob: 4e28bca68d188c4a5cfa61171634276c85ccc810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "Game/AI/Query/queryIsPlayerGrounded.h"
#include <evfl/query.h>

namespace uking::query {

IsPlayerGrounded::IsPlayerGrounded(const InitArg& arg) : ksys::act::ai::Query(arg) {}

IsPlayerGrounded::~IsPlayerGrounded() = default;

// FIXME: implement
int IsPlayerGrounded::doQuery() {
    return -1;
}

void IsPlayerGrounded::loadParams(const evfl::QueryArg& arg) {}

void IsPlayerGrounded::loadParams() {}

}  // namespace uking::query