ksys/act: Add Actor getDummyBaseProcLink()

This commit is contained in:
Léo Lam
2021-07-06 18:16:57 +02:00
parent a638e3dba1
commit f726f3b68d
3 changed files with 14 additions and 1 deletions
+9
View File
@@ -1,8 +1,17 @@
#include "KingSystem/ActorSystem/actActor.h"
#include "KingSystem/ActorSystem/actActorParam.h"
#include "KingSystem/ActorSystem/actBaseProcLink.h"
namespace ksys::act {
namespace {
BaseProcLink sDummyBaseProcLink;
} // namespace
BaseProcLink& getDummyBaseProcLink() {
return sDummyBaseProcLink;
}
const sead::SafeString& Actor::getProfile() const {
return mActorParam->getProfile();
}