#include "tString.h"
#include "tList.h"
#include "tConfiguration.h"
#include <memory>
Go to the source code of this file.
Classes | |
class | gFriends |
Defines | |
#define | MAX_FRIENDS 10 |
Functions | |
bool | getFriendsEnabled () |
void | FriendsToggle () |
tString * | getFriends () |
#define MAX_FRIENDS 10 |
Definition at line 33 of file gFriends.h.
Referenced by gFriends::FriendsMenu(), gFriends::gFriends(), and gServerMenu::Update().
void FriendsToggle | ( | ) |
Definition at line 70 of file gFriends.cpp.
References sg_enableFriends.
Referenced by gServerMenu::HandleEvent().
00071 { 00072 if (sg_enableFriends) 00073 sg_enableFriends = false; 00074 else 00075 sg_enableFriends = true; 00076 }
tString* getFriends | ( | ) |
Definition at line 78 of file gFriends.cpp.
References gFriends::friends.
Referenced by gServerMenu::Update().
00079 { 00080 return sg_friends.friends; 00081 }
bool getFriendsEnabled | ( | ) |
Definition at line 65 of file gFriends.cpp.
References sg_enableFriends.
Referenced by gBrowserMenuItem::RenderBackground(), and gServerMenu::Update().
00066 { 00067 return sg_enableFriends; 00068 }