summaryrefslogtreecommitdiffstats
path: root/sigscript/MapEffectWrapper.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-06 04:12:30 +0000
commit0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9 (patch)
treea2031b9d0016fcbd49a51c0d1a2292d1f2d8b566 /sigscript/MapEffectWrapper.h
parentb81f5bffa2772eb9bd3c67fb35485ab1ee2d96e7 (diff)
downloadsigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.gz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.tar.xz
sigen-0b4b89cf8efdc15e5a8d4b6cb24a5c8a025227d9.zip
[FIX] Renamed everything (in use) away from Poké- prefixes
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@250 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigscript/MapEffectWrapper.h')
-rw-r--r--sigscript/MapEffectWrapper.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/sigscript/MapEffectWrapper.h b/sigscript/MapEffectWrapper.h
index 8ccb2781..206d0b0e 100644
--- a/sigscript/MapEffectWrapper.h
+++ b/sigscript/MapEffectWrapper.h
@@ -15,40 +15,40 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_MAPEFFECTWRAPPER__
-#define __POKESCRIPTING_MAPEFFECTWRAPPER__
+#ifndef __SIGSCRIPT_MAPEFFECTWRAPPER__
+#define __SIGSCRIPT_MAPEFFECTWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/MapEffect.h"
+// Sigmod includes
+#include "../sigmod/MapEffect.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class MapWrapper;
class SkinWrapper;
-class POKESCRIPTING_EXPORT MapEffectWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT MapEffectWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static MapEffectWrapper* create(const Pokemod::MapEffect* effect, MapWrapper* parent);
+ static MapEffectWrapper* create(const Sigmod::MapEffect* effect, MapWrapper* parent);
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE QPoint coordinate() const;
Q_SCRIPTABLE SkinWrapper* skin();
Q_SCRIPTABLE bool isGhost() const;
- Q_SCRIPTABLE Pokemod::Script script() const;
+ Q_SCRIPTABLE Sigmod::Script script() const;
private:
- MapEffectWrapper(const Pokemod::MapEffect* effect, MapWrapper* parent);
+ MapEffectWrapper(const Sigmod::MapEffect* effect, MapWrapper* parent);
MapEffectWrapper& operator=(const MapEffectWrapper& rhs);
- const Pokemod::MapEffect* m_effect;
+ const Sigmod::MapEffect* m_effect;
};
}
-Q_DECLARE_METATYPE(Pokescripting::MapEffectWrapper*)
+Q_DECLARE_METATYPE(Sigscript::MapEffectWrapper*)
#endif