8 lines
95 B
D
8 lines
95 B
D
|
module command.remoteundo.command;
|
||
|
|
||
|
interface Command
|
||
|
{
|
||
|
void execute();
|
||
|
void undo();
|
||
|
}
|