mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 04:59:24 +00:00
8 lines
112 B
Java
8 lines
112 B
Java
package com.iluwatar;
|
|
|
|
public interface WeatherObserver {
|
|
|
|
void update(WeatherType currentWeather);
|
|
|
|
}
|