diff options
Diffstat (limited to 'src/game/client/gameclient.h')
| -rw-r--r-- | src/game/client/gameclient.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/client/gameclient.h b/src/game/client/gameclient.h index 22caa740..5a045708 100644 --- a/src/game/client/gameclient.h +++ b/src/game/client/gameclient.h @@ -43,6 +43,7 @@ class CGameClient : public IGameClient class IDemoRecorder *m_pDemoRecorder; class IServerBrowser *m_pServerBrowser; class IEditor *m_pEditor; + class IFriends *m_pFriends; CLayers m_Layers; class CCollision m_Collision; @@ -80,6 +81,7 @@ public: class CLayers *Layers() { return &m_Layers; }; class CCollision *Collision() { return &m_Collision; }; class IEditor *Editor() { return m_pEditor; } + class IFriends *Friends() { return m_pFriends; } int NetobjNumCorrections() { return m_NetObjHandler.NumObjCorrections(); } const char *NetobjCorrectedOn() { return m_NetObjHandler.CorrectedObjOn(); } @@ -178,6 +180,7 @@ public: float m_Angle; bool m_Active; bool m_ChatIgnore; + bool m_Friend; void UpdateRenderInfo(); void Reset(); |