ShiftOS-C-/source/WindowsFormsApplication1/Engine/undo.cs
MichaelTheShifter 84f689b91a Sort source code into folders.
It feels better to know what's responsible for what... Plus I removed
some un-needed C# stuff.
2016-06-25 08:10:03 -04:00

8 lines
No EOL
193 B
C#

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