Robbie-Management-System/Robbie-Management-System/src/domain/C3PO.java

23 lines
379 B
Java

package domain;
import exceptions.RobotException;
import roboterSystem.Robot;
public class C3PO extends Robotermodell implements Robot {
private int zähler = 10000;
public C3PO(String name) {
setName(name);
setiD(zähler);
zähler++;
}
@Override
public int[] think(int[] zahlen) throws RobotException {
// TODO Auto-generated method stub
return null;
}
}