mirror of
https://github.com/seriocomedy/ShiftOS-C-.git
synced 2025-01-23 01:22:16 +00:00
8 lines
193 B
C#
8 lines
193 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Drawing;
|
|||
|
|
|||
|
public class undo
|
|||
|
{
|
|||
|
public Stack<Image> undoStack = new Stack<Image>();
|
|||
|
public Stack<Image> redoStack = new Stack<Image>();
|
|||
|
}
|