diff options
| author | Léo Lam <leo@leolam.fr> | 2020-08-20 13:15:12 +0200 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-08-20 18:25:47 +0200 |
| commit | afde5b27753162e187cffc6ec765099bd0767459 (patch) | |
| tree | 88b6ed4fb1ab57d556b653840b6969eb987d9d8e /src/KingSystem/ActorSystem/actBaseProc.cpp | |
| parent | f92ab2f5598789d9531bfe93e9abcc3dc4cc938d (diff) | |
ksys/act: Implement BaseProcLink
Diffstat (limited to 'src/KingSystem/ActorSystem/actBaseProc.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/actBaseProc.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/KingSystem/ActorSystem/actBaseProc.cpp b/src/KingSystem/ActorSystem/actBaseProc.cpp index aef2365f..149386e2 100644 --- a/src/KingSystem/ActorSystem/actBaseProc.cpp +++ b/src/KingSystem/ActorSystem/actBaseProc.cpp @@ -1,14 +1,12 @@ #include "KingSystem/ActorSystem/actBaseProc.h" #include "KingSystem/ActorSystem/actBaseProcJobHandler.h" -#include "KingSystem/ActorSystem/actBaseProcLinkDataMgr.h" +#include "KingSystem/ActorSystem/actBaseProcLink.h" #include "KingSystem/ActorSystem/actBaseProcMgr.h" #include "KingSystem/ActorSystem/actBaseProcUnit.h" #include "KingSystem/Terrain/teraSystem.h" namespace ksys::act { -BaseProcLink::BaseProcLink() = default; - BaseProc::BaseProc(const CreateArg& arg) : mName(arg.actor_name), mPriority(arg.class_info->priority) { BaseProcMgr* mgr = BaseProcMgr::instance(); |
