Pr_robot_factory/utility/interfaces/Robot.java

15 lines
218 B
Java
Raw Normal View History

2022-12-08 14:58:44 +01:00
/* (c) 2012 Thomas Smits */
2023-01-06 22:55:33 +01:00
package utility.interfaces;
2022-12-08 14:58:44 +01:00
/**
* Interface für Roboter.
*
* @author Thomas Smits
*/
public interface Robot extends RobotControl, RobotInstructions{
// keine eigenen Methoden
2022-12-08 14:58:44 +01:00
}