summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/actActorLinkConstDataAccess.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-09-17 12:29:54 +0200
committerLéo Lam <leo@leolam.fr>2020-09-17 17:42:35 +0200
commit7226150ed73479695230c0b9747923c1a851512c (patch)
treedbb6292ff28ab65ed1342b0ce15bce70f76ba111 /src/KingSystem/ActorSystem/actActorLinkConstDataAccess.cpp
parent1cc0b1e6be481a1981d5ccea50f1a912331011d3 (diff)
ksys/act: Add ActorLinkConstDataAccess (incomplete)
Also moves from functions from ActorLinkConstDataAccess (the base class for BaseProc) into the Actor-specific ActorConstDataAccess
Diffstat (limited to 'src/KingSystem/ActorSystem/actActorLinkConstDataAccess.cpp')
-rw-r--r--src/KingSystem/ActorSystem/actActorLinkConstDataAccess.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/KingSystem/ActorSystem/actActorLinkConstDataAccess.cpp b/src/KingSystem/ActorSystem/actActorLinkConstDataAccess.cpp
index 8222b176..c44d5717 100644
--- a/src/KingSystem/ActorSystem/actActorLinkConstDataAccess.cpp
+++ b/src/KingSystem/ActorSystem/actActorLinkConstDataAccess.cpp
@@ -25,14 +25,6 @@ bool ActorLinkConstDataAccess::acquire(BaseProc* proc) {
return proc && proc->acquire(*this);
}
-bool ActorLinkConstDataAccess::hasProc(BaseProc* proc) const {
- return mProc == proc;
-}
-
-void ActorLinkConstDataAccess::debugLog(s32, const sead::SafeString&) {
- // Intentionally left empty.
-}
-
bool acquireProc(ActorLinkConstDataAccess* accessor, BaseProc* proc, const sead::SafeString& from,
s32) {
bool acquired = false;