1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

Merge commit 'a1edba6'

This commit is contained in:
2014-05-03 15:42:56 -07:00
8 changed files with 13 additions and 12 deletions

View File

@ -273,7 +273,7 @@ void plLinkEffectsTriggerMsg::WriteVersion(hsStream* s, hsResMgr* mgr)
mgr->WriteKey(s, fLinkInAnimKey);
}
void plLinkEffectsTriggerMsg::SetLinkKey(plKey &key)
void plLinkEffectsTriggerMsg::SetLinkKey(const plKey &key)
{
fLinkKey = key;
}
@ -430,4 +430,4 @@ void plPseudoLinkAnimCallbackMsg::Write(hsStream* stream, hsResMgr* mgr)
{
plMessage::IMsgWrite(stream,mgr);
mgr->WriteKey(stream, fAvatarKey);
}
}

View File

@ -149,7 +149,7 @@ public:
void SetLeavingAge(bool leaving) { fLeavingAge = leaving; }
bool IsLeavingAge() { return fLeavingAge; }
void SetLinkKey(plKey &key);
void SetLinkKey(const plKey &key);
const plKey GetLinkKey() const { return fLinkKey; }
void SetLinkInAnimKey(plKey &key);