Files
2020-JPaint/src/model/interfaces/IUndoable.java
T

15 lines
216 B
Java
Raw Normal View History

2020-12-08 18:38:32 +07:00
package model.interfaces;
/**
* IUndoable interface
*
* Responsibility: An interface that's part of the command pattern.
*
*/
public interface IUndoable {
void undo();
void redo();
void printShapeList();
}