示例#1
0
 public void DoSetup()
 {
     cp         = new ConsolePlatform();
     counter    = 0;
     nestLevel  = 0;
     coroPasser = null;
 }
示例#2
0
        protected override void Enable()
        {
            // This gets the ConsolePlatform instance created by MuffinFramework.
            // It can throw an exception if the class is not loaded, but we are not
            // concerned here, as all Platforms are loaded first before a service is.

            this._console = this.PlatformLoader.Get <ConsolePlatform>();
        }
示例#3
0
 public static void Main(string[] args)
 {
     ConsolePlatform.Run(new Log4netBot());
 }
 public static void Main(string[] args)
 {
     ConsolePlatform.Run(new BluntAxeBot());
 }
示例#5
0
 public static void Main(string[] args)
 {
     ConsolePlatform.Run(new CheckersBot());
 }
示例#6
0
 public static void Main(string[] args)
 {
     ConsolePlatform.Run(new AllInBot());
 }
示例#7
0
 public static void Main(string[] args)
 {
     ConsolePlatform.Run(new KingKongBot());
 }
示例#8
0
 protected override void Enable()
 {
     this._console = this.PlatformLoader.Get <ConsolePlatform>();
     this._console.OutputRecieved += this._console_OutputRecieved;
 }
 public static void Main(string[] args)
 {
     ConsolePlatform.Run(new PlayBetterHandsOnlyBot());
 }
示例#10
0
 public void DoSetup()
 {
     cp        = new ConsolePlatform();
     counter   = 0;
     nestLevel = 0;
 }
示例#11
0
 public static void Main(string[] args)
 {
     ConsolePlatform.Run(new MyStarterBot());
 }