blob: f4b3d5cb4c31d5080eb8c5579beb2e75ae5310f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|