/* (c) 2012 Thomas Smits */
package robot.interfaces;
import robot.exceptions.RobotException;
/**
* Interface für Roboter.
*
* @author Thomas Smits
*/
public interface Robot extends RobotControl, RobotInstructions{
// keine eigenen Methoden
}