diff options
| author | Léo Lam <leo@leolam.fr> | 2020-11-08 15:51:44 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-11-08 16:17:44 +0100 |
| commit | a9ec880f2ef182947bb1bf037a3e388f1f466a86 (patch) | |
| tree | 58453ce275df02bdd2b1168039ee49861a44be13 /src/KingSystem/ActorSystem/actActorParamMgr.cpp | |
| parent | aa92bf882c41b292a9ee11b6ec5ba8593b4b4fc2 (diff) | |
ksys/act: Fix ActorParamMgr struct and add ASSetting stub
Diffstat (limited to 'src/KingSystem/ActorSystem/actActorParamMgr.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/actActorParamMgr.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/KingSystem/ActorSystem/actActorParamMgr.cpp b/src/KingSystem/ActorSystem/actActorParamMgr.cpp new file mode 100644 index 00000000..f4b3d5cb --- /dev/null +++ b/src/KingSystem/ActorSystem/actActorParamMgr.cpp @@ -0,0 +1,14 @@ +#include "KingSystem/ActorSystem/actActorParamMgr.h" +#include "KingSystem/ActorSystem/actASSetting.h" + +namespace ksys::act { + +SEAD_SINGLETON_DISPOSER_IMPL(ActorParamMgr) + +ActorParamMgr::ActorParamMgr() = default; + +ActorParamMgr::~ActorParamMgr() { + ASSetting::deleteInstance(); +} + +} // namespace ksys::act |
