ddnet/src/engine/friends.h

37 lines
908 B
C
Raw Normal View History

2011-03-23 12:06:35 +00:00
/* (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;
2011-03-23 12:06:35 +00:00
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