summaryrefslogtreecommitdiffstats
path: root/sigscript/MapWrapper.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/MapWrapper.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/MapWrapper.h')
-rw-r--r--sigscript/MapWrapper.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/sigscript/MapWrapper.h b/sigscript/MapWrapper.h
index f0f8980f..e09520b2 100644
--- a/sigscript/MapWrapper.h
+++ b/sigscript/MapWrapper.h
@@ -15,16 +15,16 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_MAPWRAPPER__
-#define __POKESCRIPTING_MAPWRAPPER__
+#ifndef __SIGSCRIPT_MAPWRAPPER__
+#define __SIGSCRIPT_MAPWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/Map.h"
+// Sigmod includes
+#include "../sigmod/Map.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class MapEffectWrapper;
@@ -33,23 +33,23 @@ class MapWarpWrapper;
class MapWildListWrapper;
class TileWrapper;
-class POKESCRIPTING_EXPORT MapWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT MapWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static MapWrapper* create(const Pokemod::Map* map, PokemodWrapper* parent);
+ static MapWrapper* create(const Sigmod::Map* map, SigmodWrapper* parent);
MapEffectWrapper* effect(const int id);
MapTrainerWrapper* trainer(const int id);
MapWarpWrapper* warp(const int id);
MapWildListWrapper* wildList(const int id);
- Q_SCRIPTABLE Pokemod::Map::Type type(const QString& name) const;
+ Q_SCRIPTABLE Sigmod::Map::Type type(const QString& name) const;
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE MapWarpWrapper* flyWarp();
- Q_SCRIPTABLE Pokemod::Map::Type type() const;
+ Q_SCRIPTABLE Sigmod::Map::Type type() const;
Q_SCRIPTABLE TileWrapper* tile(const int row, const int column);
Q_SCRIPTABLE QPoint mapSize() const;
@@ -58,12 +58,12 @@ class POKESCRIPTING_EXPORT MapWrapper : public ObjectWrapper
Q_SCRIPTABLE MapWarpWrapper* warp(const QString& name);
Q_SCRIPTABLE MapWildListWrapper* wildList(const QString& name);
private:
- MapWrapper(const Pokemod::Map* map, PokemodWrapper* parent);
+ MapWrapper(const Sigmod::Map* map, SigmodWrapper* parent);
MapWrapper& operator=(const MapWrapper& rhs);
- const Pokemod::Map* m_map;
+ const Sigmod::Map* m_map;
};
}
-Q_DECLARE_METATYPE(Pokescripting::MapWrapper*)
+Q_DECLARE_METATYPE(Sigscript::MapWrapper*)
#endif