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