11 lines
235 B
Java
11 lines
235 B
Java
|
/* (c) 2012 Thomas Smits */
|
||
|
//package tpe.exceptions.roboter;
|
||
|
package domain;
|
||
|
/**
|
||
|
* Interface für Roboter.
|
||
|
*
|
||
|
* @author Thomas Smits
|
||
|
*/
|
||
|
public interface Robot extends RobotControl, RobotInstructions {
|
||
|
// keine eigenen Methoden
|
||
|
}
|