/// 48.)
 public void RemoveBotChampion(Int32 arg0, BotParticipant arg1)
 {
     int Id = Invoke("gameService", "removeBotChampion", new object[] { arg0, arg1.GetBaseTypedObject() });
     while (!results.ContainsKey(Id))
         System.Threading.Thread.Sleep(10);
     results.Remove(Id);
     
 }
 /// 48.)
 public async Task<object> RemoveBotChampion(Int32 arg0, BotParticipant arg1)
 {
     int Id = Invoke("gameService", "removeBotChampion", new object[] { arg0, arg1.GetBaseTypedObject() });
     while (!results.ContainsKey(Id))
         await Task.Delay(10);
     results.Remove(Id);
     return null;
 }