package com.iluwatar;
/**
*
* Observer interface.
*/
public interface WeatherObserver {
void update(WeatherType currentWeather);
}