blob: ca97fc67eb7b278d9d899fc6b596013d7c8a0893 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "KingSystem/ActorSystem/actAiQuery.h"
#include "KingSystem/ActorSystem/actAiRoot.h"
namespace ksys::act::ai {
Query::Query(const InitArg& arg) : mActor(arg.actor), mDefIdx(arg.def_idx) {}
template class ClassContainer<Query>;
} // namespace ksys::act::ai
|