Files
botw/src/KingSystem/ActorSystem/actActorParamMgr.h
T
Léo Lam 62880a0b1d ksys/res: Start implementing GParamList
Incomplete because many of the sub-objects have their constructors
inlined into the GParamList parse function...
2020-09-19 22:00:00 +02:00

25 lines
365 B
C++

#pragma once
#include <heap/seadDisposer.h>
namespace ksys {
namespace res {
class GParamList;
}
namespace act {
// FIXME: incomplete
class ActorParamMgr {
SEAD_SINGLETON_DISPOSER(ActorParamMgr)
public:
void init(sead::Heap* heap, sead::Heap* debug_heap);
res::GParamList* getDummyGParamList() const;
};
} // namespace act
} // namespace ksys