package simulator.model; public interface Observable { void addObserver(T o); void removeObserver(T o); }