mirror of
https://github.com/zeldaret/botw
synced 2026-06-02 01:59:59 -04:00
Initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#include "KingSystem/ActorSystem/actActorFactory.h"
|
||||
#include "KingSystem/ActorSystem/actActorCreator.h"
|
||||
|
||||
namespace ksys::act {
|
||||
|
||||
SEAD_SINGLETON_DISPOSER_IMPL(ActorFactoryHolder)
|
||||
|
||||
void ActorFactory::dummy() {}
|
||||
|
||||
void ActorFactory::dummy2() {}
|
||||
|
||||
ActorFactoryHolder::~ActorFactoryHolder() {
|
||||
ActorCreator::deleteInstance();
|
||||
}
|
||||
|
||||
void ActorFactoryHolder::init(sead::Heap* heap) {
|
||||
ActorCreator::createInstance(heap);
|
||||
ActorCreator::instance()->setActorFactory(&mFactory);
|
||||
}
|
||||
|
||||
} // namespace ksys::act
|
||||
Reference in New Issue
Block a user