/// <summary>
 /// Initializes a new instance of the <see cref="ForwardGlobalState"/> class.
 /// </summary>
 /// <param name="player">The player.</param>
 /// <param name="footballAI">The <see cref="FsmAI" /> instance to which this instance belongs.</param>
 public ForwardGlobalState(Player player, FsmAI footballAI) : base(player, footballAI)
 {
     FieldPlayerGlobalState = new FieldPlayerGlobalState(player, footballAI);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MidfielderGlobalState"/> class.
 /// </summary>
 /// <param name="player">The player.</param>
 /// <param name="footballAI">The <see cref="FsmAI" /> instance to which this instance belongs.</param>
 public MidfielderGlobalState(Player player, FsmAI footballAI) : base(player, footballAI)
 {
     FieldPlayerGlobalState = new FieldPlayerGlobalState(player, footballAI);
 }