示例#1
0
 public MotorDriverTestBot(MotorDriver driver)
 {
     this.driver = driver;
 }
示例#2
0
文件: VacuumBot.cs 项目: ducas/Robbo
 public VacuumBot(MotorDriver driver, UltrasonicDistanceSensor front)
 {
     this.driver = driver;
     this.front = front;
 }
示例#3
0
 public SafeDiscoveryBot(MotorDriver driver, UltrasonicDistanceSensor front, Accelerometer accelerometer)
 {
     this.driver = driver;
     this.front = front;
     this.accelerometer = accelerometer;
 }