asciipumper/source/UndoableAction.cs

14 lines
217 B
C#
Raw Normal View History

2023-06-02 11:49:13 -07:00
using System;
using System.Collections.Generic;
using System.Text;
namespace AsciiPumper
{
public interface IUndoableAction
{
void Undo( PaintCanvas canvas);
void Redo( PaintCanvas canvas );
}
}