aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/undo.vb
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS/undo.vb')
-rw-r--r--ShiftOS/undo.vb6
1 files changed, 6 insertions, 0 deletions
diff --git a/ShiftOS/undo.vb b/ShiftOS/undo.vb
new file mode 100644
index 0000000..ffff0ad
--- /dev/null
+++ b/ShiftOS/undo.vb
@@ -0,0 +1,6 @@
+Public Class undo
+
+ Public undoStack As New Stack(Of Image)
+ Public redoStack As New Stack(Of Image)
+
+End Class