diff options
| author | Léo Lam <leo@leolam.fr> | 2021-02-07 00:59:56 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2021-02-07 01:01:00 +0100 |
| commit | 7e6fc1d35270bc180d4a02ec3075261513effcfd (patch) | |
| tree | 07055d32bba9c7efc66e3cbfd528fe94bf26c08b /src/KingSystem/ActorSystem/actBaseProcHandle.cpp | |
| parent | a6bd00c2de7595792fc55ba930fd9c04b01d03aa (diff) | |
ksys/act: Add BaseProcHandle static variable init function
Diffstat (limited to 'src/KingSystem/ActorSystem/actBaseProcHandle.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/actBaseProcHandle.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/KingSystem/ActorSystem/actBaseProcHandle.cpp b/src/KingSystem/ActorSystem/actBaseProcHandle.cpp index 5603b5be..3db5c2b2 100644 --- a/src/KingSystem/ActorSystem/actBaseProcHandle.cpp +++ b/src/KingSystem/ActorSystem/actBaseProcHandle.cpp @@ -1,7 +1,10 @@ #include "KingSystem/ActorSystem/actBaseProcHandle.h" +#include "KingSystem/Utils/InitTimeInfo.h" namespace ksys::act { +static util::InitTimeInfo sInfo; + BaseProcHandle::BaseProcHandle() { mUnit = nullptr; mFlag = 0; @@ -26,4 +29,4 @@ BaseProc* BaseProcHandle::getProc() { return nullptr; } -} // namespace ksys::act
\ No newline at end of file +} // namespace ksys::act |
