IRC parsing, tokenization, and state handling in C#
1using System.Threading.Tasks;
2
3namespace IRCRobots
4{
5 public class Bot : IBot
6 {
7 public IServer CreateServer(string name)
8 {
9 throw new System.NotImplementedException();
10 }
11
12 public async Task<bool> Disconnected(IServer server)
13 {
14 throw new System.NotImplementedException();
15 }
16
17 public async Task Disconnect(IServer server)
18 {
19 throw new System.NotImplementedException();
20 }
21
22 public async Task<IServer> AddServer(string name, ConnectionParams connectionParams)
23 {
24 throw new System.NotImplementedException();
25 }
26
27 public async Task Run()
28 {
29 throw new System.NotImplementedException();
30 }
31 }
32}