8 lines
112 B
Java
8 lines
112 B
Java
![]() |
package com.iluwatar;
|
||
|
|
||
|
public interface WeatherObserver {
|
||
|
|
||
|
void update(WeatherType currentWeather);
|
||
|
|
||
|
}
|