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