예제 #1
0
        public void AddObstacle(int x, int y)
        {
            Point location = new Point(x, y);
            var   obstacle = new Obstacle(location);

            Rover.AddObstacle(obstacle);
        }