summaryrefslogtreecommitdiffstats
path: root/sigscript/TileWrapper.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/TileWrapper.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/TileWrapper.h')
-rw-r--r--sigscript/TileWrapper.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/sigscript/TileWrapper.h b/sigscript/TileWrapper.h
index a32d3594..b75352e9 100644
--- a/sigscript/TileWrapper.h
+++ b/sigscript/TileWrapper.h
@@ -15,38 +15,38 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_TILEWRAPPER__
-#define __POKESCRIPTING_TILEWRAPPER__
+#ifndef __SIGSCRIPT_TILEWRAPPER__
+#define __SIGSCRIPT_TILEWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/Tile.h"
+// Sigmod includes
+#include "../sigmod/Tile.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class SpriteWrapper;
-class POKESCRIPTING_EXPORT TileWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT TileWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static TileWrapper* create(const Pokemod::Tile* tile, PokemodWrapper* parent);
+ static TileWrapper* create(const Sigmod::Tile* tile, SigmodWrapper* parent);
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE SpriteWrapper* sprite();
- Q_SCRIPTABLE bool from(const Pokemod::Direction direction) const;
- Q_SCRIPTABLE Pokemod::Script script() const;
+ Q_SCRIPTABLE bool from(const Sigmod::Direction direction) const;
+ Q_SCRIPTABLE Sigmod::Script script() const;
private:
- TileWrapper(const Pokemod::Tile* tile, PokemodWrapper* parent);
+ TileWrapper(const Sigmod::Tile* tile, SigmodWrapper* parent);
TileWrapper& operator=(const TileWrapper& rhs);
- const Pokemod::Tile* m_tile;
+ const Sigmod::Tile* m_tile;
};
}
-Q_DECLARE_METATYPE(Pokescripting::TileWrapper*)
+Q_DECLARE_METATYPE(Sigscript::TileWrapper*)
#endif