aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/undo.cs
blob: 98fb92051812f3889ee6433b87e8fefd8e93404c (plain) (blame)
1
2
3
4
5
6
7
8
using System.Collections.Generic;
using System.Drawing;

public class undo
{
    public Stack<Image> undoStack = new Stack<Image>();
    public Stack<Image> redoStack = new Stack<Image>();
}