ksys/act: Add ActorSystem stub

This commit is contained in:
Léo Lam 2021-03-15 00:14:30 +01:00
parent bec661fb72
commit 20960b596f
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
3 changed files with 25 additions and 0 deletions

View File

@ -26,6 +26,8 @@ target_sources(uking PRIVATE
actActorParam.h
actActorParamMgr.cpp
actActorParamMgr.h
actActorSystem.cpp
actActorSystem.h
actActorTemplate.cpp
actActorTemplate.h
actActorUtil.cpp

View File

@ -0,0 +1,7 @@
#include "KingSystem/ActorSystem/actActorSystem.h"
namespace ksys::act {
SEAD_SINGLETON_DISPOSER_IMPL(ActorSystem)
} // namespace ksys::act

View File

@ -0,0 +1,16 @@
#pragma once
#include <heap/seadDisposer.h>
namespace ksys::act {
// TODO: incomplete
class ActorSystem {
SEAD_SINGLETON_DISPOSER(ActorSystem)
ActorSystem();
public:
void onBaseProcMgrCalc();
};
} // namespace ksys::act