2015-03-15 01:11:36 +01:00

123 lines
2.5 KiB
C#

#region Using Statements
using System;
using ANX.Framework.NonXNA.Development;
#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
{
[PercentageComplete(10)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Untested)]
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();
}
}
}
}