예제 #1
0
 public void TestInitialize()
 {
     List<string[]> commmaList= new List<string[]>();
     commmaList.Add(new []{"E", "2"});
     commmaList.Add(new []{"N", "1"});
     robot = new Robots(2, 10, 22, commmaList);
     robot.Initialize();
 }
예제 #2
0
        static void Main(string[] args)
        {
            var robot = new Robot.Robot();
            robot.Initialize();

            //var robotCleaner = new Robot.RobotCleaner();
            //robot.Initialize();
        }