Example #1
0
 public void M()
 {
     Position = Position + Heading;
 }
Example #2
0
 public Rover(int x, int y, Vector heading)
     : this()
 {
     Position = new Vector(x, y);
     Heading = heading;
 }