85aa07bf65de1cc8c0039b9a7937def0f33c9445
[des2015.git] / dsl / runtime / src / nl / ru / des / ShutdownBehaviour.java
1 package nl.ru.des;
2
3 import lejos.hardware.motor.EV3LargeRegulatedMotor;
4
5 public class ShutdownBehaviour extends BasicBehaviour{
6
7 public ShutdownBehaviour(SensorCollector sensors, EV3LargeRegulatedMotor leftMotor,
8 EV3LargeRegulatedMotor rightMotor, ColorMemory colors) {
9 super(sensors, leftMotor, rightMotor, colors);
10 }
11
12 @Override public void action(){
13 //Here it should stop the current arbitrator, not sure how yet...
14 }
15 }