summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/actActorParamMgr.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-11-08 15:51:44 +0100
committerLéo Lam <leo@leolam.fr>2020-11-08 16:17:44 +0100
commita9ec880f2ef182947bb1bf037a3e388f1f466a86 (patch)
tree58453ce275df02bdd2b1168039ee49861a44be13 /src/KingSystem/ActorSystem/actActorParamMgr.cpp
parentaa92bf882c41b292a9ee11b6ec5ba8593b4b4fc2 (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.cpp14
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