/// <summary>
 /// Initializes a new instance of the <see cref="FieldPlayerGlobalState"/> class.
 /// </summary>
 /// <param name="player">The player.</param>
 /// <param name="footballAI">The <see cref="FsmAI" /> instance to which this instance belongs.</param>
 public FieldPlayerGlobalState(Player player, FsmAI footballAI) : base(player, footballAI)
 {
     PlayerGlobalState = new PlayerGlobalState(player, footballAI);
 }
예제 #2
0
 public GoalKeeperGlobalState(Player player, FsmAI footballAI) : base(player, footballAI)
 {
     PlayerGlobalState = new PlayerGlobalState(player, footballAI);
 }