ircsharp/IRCRobots/Bot.cs

33 lines
770 B
C#

using System.Threading.Tasks;
namespace IRCRobots
{
public class Bot : IBot
{
public IServer CreateServer(string name)
{
throw new System.NotImplementedException();
}
public async Task<bool> Disconnected(IServer server)
{
throw new System.NotImplementedException();
}
public async Task Disconnect(IServer server)
{
throw new System.NotImplementedException();
}
public async Task<IServer> AddServer(string name, ConnectionParams connectionParams)
{
throw new System.NotImplementedException();
}
public async Task Run()
{
throw new System.NotImplementedException();
}
}
}