summaryrefslogtreecommitdiffstats
path: root/sigscript/TileWrapper.h
diff options
context:
space:
mode:
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