diff options
Diffstat (limited to 'src/game/Weather.h')
-rw-r--r-- | src/game/Weather.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/Weather.h b/src/game/Weather.h index 2e4e49a52db..e312f004060 100644 --- a/src/game/Weather.h +++ b/src/game/Weather.h @@ -17,15 +17,20 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + /// \addtogroup world /// @{ /// \file + #ifndef __WEATHER_H #define __WEATHER_H + #include "Common.h" #include "SharedDefines.h" #include "Timer.h" + class Player; + enum WeatherState { WEATHER_STATE_FINE = 0, @@ -41,7 +46,9 @@ enum WeatherState WEATHER_STATE_THUNDERS = 86, WEATHER_STATE_BLACKRAIN = 90 }; + struct WeatherZoneChances; + /// Weather for one zone class Weather { |