summaryrefslogtreecommitdiffstats
path: root/sigscript/WeatherWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sigscript/WeatherWrapper.cpp')
-rw-r--r--sigscript/WeatherWrapper.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/sigscript/WeatherWrapper.cpp b/sigscript/WeatherWrapper.cpp
index ad7bc990..34965d9d 100644
--- a/sigscript/WeatherWrapper.cpp
+++ b/sigscript/WeatherWrapper.cpp
@@ -18,28 +18,28 @@
// Header include
#include "WeatherWrapper.h"
-// Pokescripting includes
-#include "PokemodWrapper.h"
+// Sigscript includes
+#include "SigmodWrapper.h"
-Pokescripting::WeatherWrapper* Pokescripting::WeatherWrapper::create(const Pokemod::Weather* weather, PokemodWrapper* parent)
+Sigscript::WeatherWrapper* Sigscript::WeatherWrapper::create(const Sigmod::Weather* weather, SigmodWrapper* parent)
{
if (!m_instances.contains(Signiture(parent, weather->id())))
m_instances[Signiture(parent, weather->id())] = new WeatherWrapper(weather, parent);
return qobject_cast<WeatherWrapper*>(m_instances[Signiture(parent, weather->id())]);
}
-Pokescripting::WeatherWrapper::WeatherWrapper(const Pokemod::Weather* weather, PokemodWrapper* parent) :
+Sigscript::WeatherWrapper::WeatherWrapper(const Sigmod::Weather* weather, SigmodWrapper* parent) :
ObjectWrapper(weather, parent),
m_weather(weather)
{
}
-QString Pokescripting::WeatherWrapper::name() const
+QString Sigscript::WeatherWrapper::name() const
{
return m_weather->name();
}
-Pokemod::Script Pokescripting::WeatherWrapper::script() const
+Sigmod::Script Sigscript::WeatherWrapper::script() const
{
return m_weather->script();
}