Beispiel #1
0
 static void Main()
 {
     #if DEBUG
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     bot = new MasterBot();
     #else
     try
     {
         Application.EnableVisualStyles();
         Application.SetCompatibleTextRenderingDefault(false);
         bot = new MasterBot();
     }
     catch(Exception e)
     {
         MessageBox.Show("Error: " + e.ToString());
     }
     #endif
 }
 public override void onBlockChange(int x, int y, MasterBot.Room.Block.IBlock newBlock, MasterBot.Room.Block.IBlock oldBlock)
 {
 }