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