Graphic Rendering System 1.0
A Java-based graphic rendering system implementing various design patterns
Loading...
Searching...
No Matches
ShapeObserver.java
Go to the documentation of this file.
1package com.example.graphics.observer;
2
3import com.example.graphics.model.Shape;
4
9public interface ShapeObserver {
14 void onShapeAdded(Shape shape);
15
20 void onShapeRemoved(Shape shape);
21
27}