asciipumper/source/UndoableAction.cs

14 lines
217 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AsciiPumper
{
public interface IUndoableAction
{
void Undo( PaintCanvas canvas);
void Redo( PaintCanvas canvas );
}
}