Exemplo n.º 1
0
 public Editor()
 {
     this.history = new EditorHistory();
 }
Exemplo n.º 2
0
 public Editor(Image image)
 {
     this.image = image;
     this.shapes = new List<IShape>();
     this.history = new EditorHistory();
 }