diff options
Diffstat (limited to 'sigmod/Weather.h')
-rw-r--r-- | sigmod/Weather.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sigmod/Weather.h b/sigmod/Weather.h index d7952ba5..8f884de1 100644 --- a/sigmod/Weather.h +++ b/sigmod/Weather.h @@ -31,7 +31,7 @@ namespace Sigmod { // Forward declarations -class Sigmod; +class Game; /** * \class Sigmod::Weather Weather.h sigmod/Weather.h @@ -56,7 +56,7 @@ class SIGMOD_EXPORT Weather : public Object * \param parent The parent of the weather. * \param id The id number for the weather. */ - Weather(const Sigmod* parent, const int id); + Weather(const Game* parent, const int id); /** * Data copy constructor. Copies the data from \p weather as a child of \p parent with id \p id. * @@ -64,7 +64,7 @@ class SIGMOD_EXPORT Weather : public Object * \param parent The parent of the weather. * \param id The id number for the weather. */ - Weather(const Weather& weather, const Sigmod* parent, const int id); + Weather(const Weather& weather, const Game* parent, const int id); /** * XML data constructor. * @@ -72,7 +72,7 @@ class SIGMOD_EXPORT Weather : public Object * \param parent The parent of the weather. * \param id The id number for the weather. */ - Weather(const QDomElement& xml, const Sigmod* parent, const int id = -1); + Weather(const QDomElement& xml, const Game* parent, const int id = -1); /** * Check to make sure the weather's values are valid. |