aboutsummaryrefslogtreecommitdiff
path: root/undo.vb
diff options
context:
space:
mode:
Diffstat (limited to 'undo.vb')
-rw-r--r--undo.vb6
1 files changed, 6 insertions, 0 deletions
diff --git a/undo.vb b/undo.vb
new file mode 100644
index 0000000..ed3a483
--- /dev/null
+++ b/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