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