summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/actAiBehavior.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-12-19 21:52:22 +0100
committerLéo Lam <leo@leolam.fr>2020-12-19 21:52:22 +0100
commit058cca1a3fa983bdb8009ad759ae6cb4c7542179 (patch)
treef0635eca45589ec7009138fa8ad74c0279bdc875 /src/KingSystem/ActorSystem/actAiBehavior.cpp
parent19ef291d20e0f8e6333271163eabdd75b969928a (diff)
ksys: Replace ClassContainer<T> with 4 different classes
Some functions look really similar but other functions have significant differences, so it is probably not a class template.
Diffstat (limited to 'src/KingSystem/ActorSystem/actAiBehavior.cpp')
-rw-r--r--src/KingSystem/ActorSystem/actAiBehavior.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/KingSystem/ActorSystem/actAiBehavior.cpp b/src/KingSystem/ActorSystem/actAiBehavior.cpp
index c6e5b327..e60780fe 100644
--- a/src/KingSystem/ActorSystem/actAiBehavior.cpp
+++ b/src/KingSystem/ActorSystem/actAiBehavior.cpp
@@ -6,6 +6,4 @@ 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