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

namespace uking::query {

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

CheckWeather::~CheckWeather() = default;

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

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

void CheckWeather::loadParams() {}

}  // namespace uking::query