Pr_robot_factory/domain/Robot.java

14 lines
271 B
Java
Raw Normal View History

2022-12-08 14:58:44 +01:00
/* (c) 2012 Thomas Smits */
//package tpe.exceptions.roboter;
package domain;
import roboter.RobotInstructions;
2022-12-08 14:58:44 +01:00
/**
* Interface für Roboter.
*
* @author Thomas Smits
*/
public interface Robot extends RobotControl, RobotInstructions {
// keine eigenen Methoden
}