Files
RobotSimulator/src/main/java/au/com/seek/command/RobotCommand.java
T
2017-04-14 17:39:38 +08:00

9 lines
130 B
Java

package au.com.seek.command;
import au.com.seek.domain.Robot;
public interface RobotCommand {
void execute(Robot robot);
}