mirror of
https://github.com/wahyd4/RobotSimulator.git
synced 2026-08-09 05:16:20 +10:00
9 lines
130 B
Java
9 lines
130 B
Java
package au.com.seek.command;
|
|
|
|
|
|
import au.com.seek.domain.Robot;
|
|
|
|
public interface RobotCommand {
|
|
void execute(Robot robot);
|
|
}
|