Exemplo n.º 1
0
 /// <summary>
 ///     Executes and calculates the outcome for the war scenario between the Ritimba and Leftoto.
 /// </summary>
 /// <param name="warStats">The stats required for the war to calculate who wins.</param>
 /// <returns><c>true</c> if Ritimba wins the war; otherwise, <c>false</c>.</returns>
 public bool ExecuteWar(WarStats warStats)
 {
     return(warService.ExecuteWar(warStats));
 }