aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/observer/IObservable.java
blob: 2dadc6055c91f88b85d82bea0a7f1f12e9b9290c (plain)
1
2
3
4
5
6
7
8
9
10
package observer;

/**
 * Created by loic on 21/09/16.
 */
public interface IObservable {
    void addObserver(IObserver object);
    void removeObserver(IObserver object);
    void notifyObservers();
}