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