12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DrawTools
- {
-
-
-
- abstract class Command
- {
-
-
- public abstract void Undo(GraphicsList list);
-
-
- public abstract void Redo(GraphicsList list);
-
-
- }
- }
|