diff options
| author | Léo Lam <leo@leolam.fr> | 2025-05-15 23:47:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-15 23:47:38 +0100 |
| commit | 883e2da96aaceb1865e8fe7c4a8a2a5fd42df7a9 (patch) | |
| tree | 3a9c5b46904701268f09f47a40c327a1a344446d /src/KingSystem/ActorSystem/actBaseProc.cpp | |
| parent | 47d5304c06ab48aa15073ffaaaf2efa06bbeb346 (diff) | |
| parent | 81feab300b56913c624e72e8c348df93da1cdcf4 (diff) | |
Merge pull request #142 from Pistonight/merge_base_proc_handle_unit
Merge BaseProcHandle and BaseProcUnit TU
Diffstat (limited to 'src/KingSystem/ActorSystem/actBaseProc.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/actBaseProc.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/KingSystem/ActorSystem/actBaseProc.cpp b/src/KingSystem/ActorSystem/actBaseProc.cpp index 528766d3..ea4f8884 100644 --- a/src/KingSystem/ActorSystem/actBaseProc.cpp +++ b/src/KingSystem/ActorSystem/actBaseProc.cpp @@ -2,14 +2,17 @@ #include <thread/seadThread.h> #include <time/seadTickSpan.h> #include "KingSystem/ActorSystem/actActorLinkConstDataAccess.h" +#include "KingSystem/ActorSystem/actBaseProcHandle.h" #include "KingSystem/ActorSystem/actBaseProcJobHandler.h" #include "KingSystem/ActorSystem/actBaseProcLink.h" #include "KingSystem/ActorSystem/actBaseProcMgr.h" -#include "KingSystem/ActorSystem/actBaseProcUnit.h" #include "KingSystem/Terrain/teraSystem.h" +#include "KingSystem/Utils/InitTimeInfo.h" namespace ksys::act { +static util::InitTimeInfo sInfo; + BaseProc::BaseProc(const CreateArg& arg) : mName(arg.actor_name), mPriority(arg.class_info->priority) { BaseProcMgr* mgr = BaseProcMgr::instance(); |
