コード例 #1
0
 public RoamScanningToCenter(AIRobot robot) : base(robot)
 {
 }
コード例 #2
0
 public Behavior(AIRobot robot)
 {
     this.robot = robot;
 }
コード例 #3
0
 public NarrowLock(AIRobot robot) : base(robot, 1.9)
 {
 }
コード例 #4
0
 public ScanLock(AIRobot robot, double lockFactor) : base(robot)
 {
     this.lockFactor = lockFactor;
 }
コード例 #5
0
 public ThinLock(AIRobot robot) : base(robot, 1.0)
 {
 }
コード例 #6
0
 public FixedLock(AIRobot robot) : base(robot, 2.0)
 {
 }
コード例 #7
0
 public RoamScanning(AIRobot robot, Direction direction) : base(robot)
 {
     this.direction = direction;
 }
コード例 #8
0
 public RoamScanning(AIRobot robot) : this(robot, Direction.Right)
 {
 }