Print out what behaviours are active when pCampBot starts up

This commit is contained in:
Justin Clark-Casey (justincc)
2011-11-23 22:18:10 +00:00
parent d145750e87
commit ed7ddeecf2
5 changed files with 42 additions and 12 deletions

View File

@@ -31,6 +31,15 @@ namespace pCampBot.Interfaces
{
public interface IBehaviour
{
/// <summary>
/// Name of this behaviour.
/// </summary>
string Name { get; }
/// <summary>
/// Action to take when this behaviour is invoked.
/// </summary>
/// <param name="bot"></param>
void Action(Bot bot);
}
}