/// <summary>
 /// Check if we want to run
 /// </summary>
 /// <param name="tank">The tank being controlled</param>
 /// <returns>True if we want to run</returns>
 public bool Decide(AITankControl tank)
 {
     return(tank.AILevel >= MinimumLevel && Decider.Decide(tank));
 }
 /// <summary>
 /// Check if we want to run
 /// </summary>
 /// <param name="tank">The tank being controlled</param>
 /// <returns>True if we want to run</returns>
 public bool Decide(AIInput g)
 {
     return(Decider.Decide(g));
 }