summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/actActor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/KingSystem/ActorSystem/actActor.cpp')
-rw-r--r--src/KingSystem/ActorSystem/actActor.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/KingSystem/ActorSystem/actActor.cpp b/src/KingSystem/ActorSystem/actActor.cpp
index ec5da1c3..7d93a0a5 100644
--- a/src/KingSystem/ActorSystem/actActor.cpp
+++ b/src/KingSystem/ActorSystem/actActor.cpp
@@ -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();
}