App
ApplyUndoPatchCommand.java
Go to the documentation of this file.
1 package mhr.appcore.commands.imagecommands;
2 
3 import mhr.appcore.AppCore;
4 import mhr.appcore.commands.AppCommand;
5 
9 public class ApplyUndoPatchCommand extends AppCommand {
10 
11 
16  }
17 
18  @Override
19  public void action(AppCore target) {
20  target.getImg().applyUndoPatch();
21  target.getRenderer().render();
22  }
23 
24 }