19#ifndef HEADER_WEATHER_HPP
20#define HEADER_WEATHER_HPP
29 float m_next_lightning;
39 void update(
float dt);
44 bool shouldLightning() {
return m_lightning > 0.0f; }
46 irr::core::vector3df getIntensity();
Manages the abstract singleton at runtime. This has been designed to allow multi-inheritance....
Definition: singleton.hpp:35
The base class for sound effects.
Definition: sfx_base.hpp:43
Definition: weather.hpp:28
Weather()
The weather manager stores information about the weather.
Definition: weather.cpp:29
void startLightning()
Set the flag that a lightning should be shown.
Definition: weather.hpp:43