This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
aurora-sharp-desktop/Aurora/Backend/Client/Party/ClientPartyExecutor.cs
2019-06-03 10:57:05 -04:00

73 lines
1.5 KiB
C#

using System;
using Aurora.Backend.Executors;
namespace Aurora.Backend.Client.Party
{
public class ClientPartyExecutor : BasePartyExecutor
{
public ClientPartyExecutor()
{
}
public override void AddToQueue()
{
throw new NotImplementedException();
}
public override void Close()
{
throw new NotImplementedException();
}
public override void GetMembers()
{
throw new NotImplementedException();
}
public override void GetQueue()
{
throw new NotImplementedException();
}
public override void Initialize()
{
throw new NotImplementedException();
}
public override void Next()
{
throw new NotImplementedException();
}
public override void Pause()
{
throw new NotImplementedException();
}
public override void Play()
{
throw new NotImplementedException();
}
public override void Previous()
{
throw new NotImplementedException();
}
public override void RemoveFromQueue()
{
throw new NotImplementedException();
}
public override void Run()
{
throw new NotImplementedException();
}
public override void Stop()
{
throw new NotImplementedException();
}
}
}