patterns/command/remoteundo/command.d

8 lines
95 B
D

module command.remoteundo.command;
interface Command
{
void execute();
void undo();
}