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