From b3e1495f7a626bb4429ff5e4f3ad39ae9654f23b Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 17 Oct 2008 05:46:40 +0000 Subject: [FIX] Moved Hat, Fraction, Matrix, and Script to sigcore git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@281 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- sigmod/Weather.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'sigmod/Weather.cpp') diff --git a/sigmod/Weather.cpp b/sigmod/Weather.cpp index 5f8ac537..532643a4 100644 --- a/sigmod/Weather.cpp +++ b/sigmod/Weather.cpp @@ -18,10 +18,12 @@ // Header include #include "Weather.h" +// Sigcore includes +#include "../sigcore/Script.h" + // Sigmod includes #include "Macros.h" #include "Sigmod.h" -#include "Script.h" Sigmod::Weather::Weather(const Weather& weather) : Object(weather.parent(), weather.id()) @@ -81,7 +83,7 @@ void Sigmod::Weather::setName(const QString& name) CHECK(name); } -void Sigmod::Weather::setScript(const Script& script) +void Sigmod::Weather::setScript(const Sigcore::Script& script) { CHECK(script); } @@ -91,7 +93,7 @@ QString Sigmod::Weather::name() const return m_name; } -Sigmod::Script Sigmod::Weather::script() const +Sigcore::Script Sigmod::Weather::script() const { return m_script; } -- cgit