blob: bf9df904ada9b15368b8c1316e95c9b8794560bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#ifndef ENGINE_FRIENDS_H
#define ENGINE_FRIENDS_H
#include <engine/shared/protocol.h>
#include "kernel.h"
struct CFriendInfo
{
char m_aName[MAX_NAME_LENGTH];
char m_aClan[MAX_CLAN_LENGTH];
};
class IFriends : public IInterface
{
MACRO_INTERFACE("friends", 0)
public:
enum
{
MAX_FRIENDS=128,
};
virtual void Init() = 0;
virtual int NumFriends() const = 0;
virtual const CFriendInfo *GetFriend(int Index) const = 0;
virtual bool IsFriend(const char *pName, const char *pClan, bool PlayersOnly) const = 0;
virtual void AddFriend(const char *pName, const char *pClan) = 0;
virtual void RemoveFriend(const char *pName, const char *pClan) = 0;
virtual void RemoveFriend(int Index) = 0;
};
#endif
|