blob: 6c00660fa3c0a35c112253dfe78c532e9690c4d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "Game/AI/Query/queryIsNeedEquipWeapon.h"
#include <evfl/query.h>
namespace uking::query {
IsNeedEquipWeapon::IsNeedEquipWeapon(const InitArg& arg) : ksys::act::ai::Query(arg) {}
IsNeedEquipWeapon::~IsNeedEquipWeapon() = default;
// FIXME: implement
int IsNeedEquipWeapon::doQuery() {
return -1;
}
void IsNeedEquipWeapon::loadParams(const evfl::QueryArg& arg) {}
void IsNeedEquipWeapon::loadParams() {}
} // namespace uking::query
|