asciipumper

- mspaint style program to create irc ascii art
git clone git://git.acid.vegas/asciipumper.git
Log | Files | Refs | Archive | README

UndoableAction.cs (217B)

      1 using System;
      2 using System.Collections.Generic;
      3 using System.Text;
      4 
      5 namespace AsciiPumper
      6 {
      7 	public interface IUndoableAction
      8 	{
      9 		void Undo( PaintCanvas canvas);
     10 		void Redo( PaintCanvas canvas );
     11 
     12 	}
     13 }