mirror of
https://github.com/zeldaret/botw
synced 2026-05-28 08:25:01 -04:00
ksys/act: Add ActorSystem stub
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user