119 lines
2.4 KiB
C#
Raw Normal View History

#region Using Statements
using System;
#endregion // Using Statements
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.GamerServices
{
public sealed class FriendGamer : Gamer
{
public bool FriendRequestReceivedFrom
{
get
{
throw new NotImplementedException();
}
}
public bool FriendRequestSentTo
{
get
{
throw new NotImplementedException();
}
}
public bool HasVoice
{
get
{
throw new NotImplementedException();
}
}
public bool InviteAccepted
{
get
{
throw new NotImplementedException();
}
}
public bool InviteReceivedFrom
{
get
{
throw new NotImplementedException();
}
}
public bool InviteRejected
{
get
{
throw new NotImplementedException();
}
}
public bool InviteSentTo
{
get
{
throw new NotImplementedException();
}
}
public bool IsAway
{
get
{
throw new NotImplementedException();
}
}
public bool IsBusy
{
get
{
throw new NotImplementedException();
}
}
public bool IsJoinable
{
get
{
throw new NotImplementedException();
}
}
public bool IsOnline
{
get
{
throw new NotImplementedException();
}
}
public bool IsPlaying
{
get
{
throw new NotImplementedException();
}
}
public string Presence
{
get
{
throw new NotImplementedException();
}
}
}
}