mirror of https://github.com/zeldaret/botw.git
ksys/act: Add ActorSystem stub
This commit is contained in:
parent
bec661fb72
commit
20960b596f
|
|
@ -26,6 +26,8 @@ target_sources(uking PRIVATE
|
|||
actActorParam.h
|
||||
actActorParamMgr.cpp
|
||||
actActorParamMgr.h
|
||||
actActorSystem.cpp
|
||||
actActorSystem.h
|
||||
actActorTemplate.cpp
|
||||
actActorTemplate.h
|
||||
actActorUtil.cpp
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
#include "KingSystem/ActorSystem/actActorSystem.h"
|
||||
|
||||
namespace ksys::act {
|
||||
|
||||
SEAD_SINGLETON_DISPOSER_IMPL(ActorSystem)
|
||||
|
||||
} // namespace ksys::act
|
||||
|
|
@ -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
|
||||
Loading…
Reference in New Issue