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