Esempio n. 1
0
 public void TriggerBump(BumpSensorLocation bumpSensorLocation)
 {
     bot.SensorArray.BumpSensors.Bump(bumpSensorLocation);
 }
Esempio n. 2
0
 public BumpEventArgs(BumpSensorLocation bumpSensorLocation)
 {
     this.bumpSensorLocation = bumpSensorLocation;
 }
Esempio n. 3
0
 // internal for physicalinteraction to use
 internal void Bump(BumpSensorLocation bumpSensorLocation)
 {
     Bump(this, new BumpEventArgs(bumpSensorLocation));
 }
Esempio n. 4
0
 internal BumpSensor(BumpSensorLocation bumpSensorLocation)
 {
     this.bumpSensorLocation = bumpSensorLocation;
 }