aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/undo.vb
diff options
context:
space:
mode:
authorpfg github <[email protected]>2015-03-08 09:18:40 -0700
committerpfg github <[email protected]>2015-03-08 09:18:40 -0700
commita3db778746af40eb9f9ec2cccfb3c935164600f5 (patch)
tree6fd5220c1283aeb448d4b67c8c122f78d2a7a8dc /ShiftOS/undo.vb
parentbfd7c782b02bce11bb07cc228e5d0775ad0d98d5 (diff)
downloadshiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.tar.gz
shiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.tar.bz2
shiftos-a3db778746af40eb9f9ec2cccfb3c935164600f5.zip
Full Source
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..ed3a483
--- /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