blob: 8ed6f4b52a101ab385fdd4e3be1a3d84acb28f01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "Game/AI/Query/queryCheckLastDamageAttacker.h"
#include <evfl/Query.h>
namespace uking::query {
CheckLastDamageAttacker::CheckLastDamageAttacker(const InitArg& arg) : ksys::act::ai::Query(arg) {}
CheckLastDamageAttacker::~CheckLastDamageAttacker() = default;
// FIXME: implement
int CheckLastDamageAttacker::doQuery() {
return -1;
}
void CheckLastDamageAttacker::loadParams(const evfl::QueryArg& arg) {
loadString(arg.param_accessor, "Name");
}
void CheckLastDamageAttacker::loadParams() {
getDynamicParam(&mName, "Name");
}
} // namespace uking::query
|