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

namespace uking::query {

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

IsEquipedDyedArmor::~IsEquipedDyedArmor() = default;

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

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

void IsEquipedDyedArmor::loadParams() {}

}  // namespace uking::query