aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/undo.vb
diff options
context:
space:
mode:
authorShiftOS <[email protected]>2014-10-11 14:14:20 -0400
committerAndrew Lee <[email protected]>2014-10-11 14:14:20 -0400
commitcb58c22d232766d955d6c9d37e168e505b5faa9d (patch)
tree6dc22833fd0071fbe64b688e2e3f295450300301 /ShiftOS/undo.vb
downloadshiftos-original.tar.gz
shiftos-original.tar.bz2
shiftos-original.zip
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