Exemple #1
0
 public Vehicle(double x, double y)
 {
     this.X         = x;
     this.Y         = y;
     this.Direction = North.GetNorth();
 }
Exemple #2
0
 public Vehicle()
 {
     this.Direction = North.GetNorth();
 }