2022-12-08 14:58:44 +01:00
|
|
|
/* (c) 2012 Thomas Smits */
|
2022-12-09 10:45:51 +01:00
|
|
|
package robot.interfaces;
|
2022-12-09 01:38:11 +01:00
|
|
|
|
2022-12-14 09:52:50 +01:00
|
|
|
|
|
|
|
import robot.exceptions.RobotException;
|
|
|
|
|
2022-12-08 14:58:44 +01:00
|
|
|
/**
|
|
|
|
* Interface für Roboter.
|
|
|
|
*
|
|
|
|
* @author Thomas Smits
|
|
|
|
*/
|
2022-12-14 09:52:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
public interface Robot extends RobotControl, RobotInstructions{
|
|
|
|
// keine eigenen Methoden
|
|
|
|
|
2022-12-08 14:58:44 +01:00
|
|
|
}
|