mirror of
https://github.com/seriocomedy/ShiftOS-C-.git
synced 2025-01-22 10:50:27 -05:00
84f689b91a
It feels better to know what's responsible for what... Plus I removed some un-needed C# stuff.
8 lines
No EOL
193 B
C#
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>();
|
|
} |