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