Skip to content

Instantly share code, notes, and snippets.

@AzureKitsune
Created October 26, 2011 21:36
Show Gist options
  • Save AzureKitsune/1317962 to your computer and use it in GitHub Desktop.
Save AzureKitsune/1317962 to your computer and use it in GitHub Desktop.
AccelIRC.. ideas
public abstract class IRCBot
{
public abstract IEnumerable<string> OnChannelMessage(string channel, string msg);
}
public class MyIRCBot : IRCBot
{
public IEnumerable<string> OnChannelMessage(string channel, string msg)
{
yield "Send a message to the channel.";
yield "Another message sent.";
yield "ETC.";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment