Left: Implement composite structures
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
package model.interfaces;
|
||||
|
||||
/**
|
||||
* IUndoable interface
|
||||
*
|
||||
* Responsibility: An interface that's part of the command pattern.
|
||||
*
|
||||
*/
|
||||
|
||||
public interface IUndoable {
|
||||
void undo();
|
||||
void redo();
|
||||
void printShapeList();
|
||||
}
|
||||
Reference in New Issue
Block a user