25 lines
331 B
D
25 lines
331 B
D
|
module command.remoteundo.lightoffcommand;
|
||
|
|
||
|
import command.remoteundo.command;
|
||
|
import command.remoteundo.light;
|
||
|
|
||
|
class LightOffCommand : Command
|
||
|
{
|
||
|
Light light;
|
||
|
|
||
|
this(Light light)
|
||
|
{
|
||
|
this.light = light;
|
||
|
}
|
||
|
|
||
|
void execute()
|
||
|
{
|
||
|
light.off();
|
||
|
}
|
||
|
|
||
|
void undo()
|
||
|
{
|
||
|
light.on();
|
||
|
}
|
||
|
}
|