diff options
| author | Léo Lam <leo@leolam.fr> | 2020-12-09 17:17:25 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-12-09 18:11:24 +0100 |
| commit | fcbe17a3f0db98bdafdfd917210b03019de2d31f (patch) | |
| tree | 90c949cab5c91d11a5d62b600b4cd7f33e7d7a61 /src/KingSystem/ActorSystem/actAiBehavior.cpp | |
| parent | cd10f3774bd1e08dd7126958303730407158dd79 (diff) | |
ksys/act: Start adding RootAi
Diffstat (limited to 'src/KingSystem/ActorSystem/actAiBehavior.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/actAiBehavior.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/KingSystem/ActorSystem/actAiBehavior.cpp b/src/KingSystem/ActorSystem/actAiBehavior.cpp index ea86c732..c6e5b327 100644 --- a/src/KingSystem/ActorSystem/actAiBehavior.cpp +++ b/src/KingSystem/ActorSystem/actAiBehavior.cpp @@ -1,8 +1,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 |
