aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/undo.vb
blob: ed3a483ad16d0a78b4d97cbae0ebc032857ddc0c (plain) (blame)
1
2
3
4
5
6
Public Class undo

    Public undoStack As New Stack(Of Image)
    Public redoStack As New Stack(Of Image)

End Class