summaryrefslogtreecommitdiffstats
path: root/sigscript/WeatherWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'sigscript/WeatherWrapper.h')
-rw-r--r--sigscript/WeatherWrapper.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/sigscript/WeatherWrapper.h b/sigscript/WeatherWrapper.h
index 4a915af2..97b683f9 100644
--- a/sigscript/WeatherWrapper.h
+++ b/sigscript/WeatherWrapper.h
@@ -15,33 +15,33 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_WEATHERWRAPPER__
-#define __POKESCRIPTING_WEATHERWRAPPER__
+#ifndef __SIGSCRIPT_WEATHERWRAPPER__
+#define __SIGSCRIPT_WEATHERWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/Weather.h"
+// Sigmod includes
+#include "../sigmod/Weather.h"
-namespace Pokescripting
+namespace Sigscript
{
-class POKESCRIPTING_EXPORT WeatherWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT WeatherWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static WeatherWrapper* create(const Pokemod::Weather* weather, PokemodWrapper* parent);
+ static WeatherWrapper* create(const Sigmod::Weather* weather, SigmodWrapper* parent);
Q_SCRIPTABLE QString name() const;
- Q_SCRIPTABLE Pokemod::Script script() const;
+ Q_SCRIPTABLE Sigmod::Script script() const;
private:
- WeatherWrapper(const Pokemod::Weather* weather, PokemodWrapper* parent);
+ WeatherWrapper(const Sigmod::Weather* weather, SigmodWrapper* parent);
WeatherWrapper& operator=(const WeatherWrapper& rhs);
- const Pokemod::Weather* m_weather;
+ const Sigmod::Weather* m_weather;
};
}
-Q_DECLARE_METATYPE(Pokescripting::WeatherWrapper*)
+Q_DECLARE_METATYPE(Sigscript::WeatherWrapper*)
#endif