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

namespace uking::query {

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

IsRideHorse::~IsRideHorse() = default;

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

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

void IsRideHorse::loadParams() {}

}  // namespace uking::query