Beispiel #1
0
 public OffensivePlay(OffensivePlayType type, Formation formation, RouteTypes[] routes) : base(formation)
 {
     if (type != OffensivePlayType.PASS)
     {
         return;
     }
     this.type      = type;
     this.routes    = routes;
     this.formation = formation;
 }
Beispiel #2
0
 public OffensivePlay(OffensivePlayType type, Formation formation) : base(formation)
 {
     this.type      = type;
     this.formation = formation;
 }