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/components/menus.h | |
| parent | b64db75a6b5e6a08c356278ab73d29707579844c (diff) | |
| download | zcatch-ae325c873f64603f3957b3ded623a67088752ba8.tar.gz zcatch-ae325c873f64603f3957b3ded623a67088752ba8.zip | |
added friends feature. Closes #24
Diffstat (limited to 'src/game/client/components/menus.h')
| -rw-r--r-- | src/game/client/components/menus.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/client/components/menus.h b/src/game/client/components/menus.h index e8236f59..3cdfe3f0 100644 --- a/src/game/client/components/menus.h +++ b/src/game/client/components/menus.h @@ -101,6 +101,7 @@ class CMenus : public CComponent POPUP_LANGUAGE, POPUP_DELETE_DEMO, POPUP_RENAME_DEMO, + POPUP_REMOVE_FRIEND, POPUP_SOUNDERROR, POPUP_PASSWORD, POPUP_QUIT, @@ -198,6 +199,8 @@ class CMenus : public CComponent void DemolistOnUpdate(bool Reset); void DemolistPopulate(); static int DemolistFetchCallback(const char *pName, int IsDir, int StorageType, void *pUser); + + int m_FriendlistSelectedIndex; // found in menus.cpp int Render(); @@ -222,6 +225,7 @@ class CMenus : public CComponent void RenderServerbrowserServerList(CUIRect View); void RenderServerbrowserServerDetail(CUIRect View); void RenderServerbrowserFilters(CUIRect View); + void RenderServerbrowserFriends(CUIRect View); void RenderServerbrowser(CUIRect MainView); static void ConchainServerbrowserUpdate(IConsole::IResult *pResult, void *pUserData, IConsole::FCommandCallback pfnCallback, void *pCallbackUserData); |