Files
MartianRobots/MartianRobotsSolver/IRobotCommand.cs
T
2022-09-13 02:43:55 +03:00

10 lines
174 B
C#

namespace MartianRobotsSolver
{
public interface IRobotCommand
{
public string Command { get; }
public void Process(RobotInfo robotInfo);
}
}