summaryrefslogtreecommitdiffstats
path: root/sigscript/MoveWrapper.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/MoveWrapper.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/MoveWrapper.h')
-rw-r--r--sigscript/MoveWrapper.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/sigscript/MoveWrapper.h b/sigscript/MoveWrapper.h
index 37a7192f..0ae57288 100644
--- a/sigscript/MoveWrapper.h
+++ b/sigscript/MoveWrapper.h
@@ -15,44 +15,44 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_MOVEWRAPPER__
-#define __POKESCRIPTING_MOVEWRAPPER__
+#ifndef __SIGSCRIPT_MOVEWRAPPER__
+#define __SIGSCRIPT_MOVEWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/Move.h"
+// Sigmod includes
+#include "../sigmod/Move.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class TypeWrapper;
-class POKESCRIPTING_EXPORT MoveWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT MoveWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static MoveWrapper* create(const Pokemod::Move* move, PokemodWrapper* parent);
+ static MoveWrapper* create(const Sigmod::Move* move, SigmodWrapper* parent);
Q_SCRIPTABLE QString name() const;
- Q_SCRIPTABLE Pokemod::Fraction accuracy() const;
+ Q_SCRIPTABLE Sigmod::Fraction accuracy() const;
Q_SCRIPTABLE int power() const;
Q_SCRIPTABLE TypeWrapper* type();
Q_SCRIPTABLE bool special() const;
Q_SCRIPTABLE int powerPoints() const;
Q_SCRIPTABLE int priority() const;
Q_SCRIPTABLE QString description() const;
- Q_SCRIPTABLE Pokemod::Script battleScript() const;
- Q_SCRIPTABLE Pokemod::Script worldScript() const;
+ Q_SCRIPTABLE Sigmod::Script battleScript() const;
+ Q_SCRIPTABLE Sigmod::Script worldScript() const;
private:
- MoveWrapper(const Pokemod::Move* move, PokemodWrapper* parent);
+ MoveWrapper(const Sigmod::Move* move, SigmodWrapper* parent);
MoveWrapper& operator=(const MoveWrapper& rhs);
- const Pokemod::Move* m_move;
+ const Sigmod::Move* m_move;
};
}
-Q_DECLARE_METATYPE(Pokescripting::MoveWrapper*)
+Q_DECLARE_METATYPE(Sigscript::MoveWrapper*)
#endif