mirror of
https://github.com/farcasclaudiu/MartianRobots.git
synced 2026-06-22 05:01:14 +03:00
10 lines
174 B
C#
10 lines
174 B
C#
namespace MartianRobotsSolver
|
|
{
|
|
public interface IRobotCommand
|
|
{
|
|
public string Command { get; }
|
|
|
|
public void Process(RobotInfo robotInfo);
|
|
}
|
|
}
|