diff options
| author | oy <Tom_Adams@web.de> | 2011-03-23 13:06:35 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-03-23 13:06:35 +0100 |
| commit | ae325c873f64603f3957b3ded623a67088752ba8 (patch) | |
| tree | 47f5abde2090975fc491503d0ecd5386da53830c /src/game/client/gameclient.h | |
| parent | b64db75a6b5e6a08c356278ab73d29707579844c (diff) | |
| download | zcatch-ae325c873f64603f3957b3ded623a67088752ba8.tar.gz zcatch-ae325c873f64603f3957b3ded623a67088752ba8.zip | |
added friends feature. Closes #24
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(); |