Exemplo n.º 1
0
 public void HandleGameFightStartMessage(Bot bot, GameFightStartMessage message)
 {
     bot.Character.Fight.StartFight();
 }
Exemplo n.º 2
0
 public static void HandleGameFightStartMessage(Bot bot, GameFightStartMessage message)
 {
     if (!bot.Character.IsFighting())
         logger.Error("Received GameFightStartMessage but character is not in fight !");
     else
         bot.Character.Fight.StartFight();
 }