Example #1
0
 public AttackerExample2(Team team, ICoach coach)
     : base(team, coach)
 {
     m_startPosition = new PointF(m_sideFactor * 10, 0);
 }
Example #2
0
 public RegularGoalkeeper(Team team, ICoach coach, PointF startPoint, PolygonBorders borders, int playerNumber)
     : base(team, coach, startPoint, borders, playerNumber)
 {
 }
Example #3
0
 public RightWingBack(Team team, ICoach coach)
     : base(team, coach)
 {
 }
Example #4
0
 public RegularGoalkeeper(Team team, ICoach coach, int playerNumber) :
     base(team, coach, playerNumber)
 {
 }