ShiftOS-C-/source/WindowsFormsApplication1/undo.cs

8 lines
193 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.Drawing;
public class undo
{
public Stack<Image> undoStack = new Stack<Image>();
public Stack<Image> redoStack = new Stack<Image>();
}