コード例 #1
0
 public MoveCommand(Robot robot)
     : base(robot)
 {
 }
コード例 #2
0
 public RotateRightCommand(Robot robot)
     : base(robot)
 {
 }
コード例 #3
0
 public RobotCommandBase(Robot robot)
 {
     _robot = robot;
 }
コード例 #4
0
 public RotateLeftCommand(Robot robot)
     : base(robot)
 {
 }
コード例 #5
0
 public TakeSampleCommand(Robot robot)
     : base(robot)
 {
 }