summaryrefslogtreecommitdiffstats
path: root/sigscript/MapTrainerWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'sigscript/MapTrainerWrapper.h')
-rw-r--r--sigscript/MapTrainerWrapper.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/sigscript/MapTrainerWrapper.h b/sigscript/MapTrainerWrapper.h
index 0c65b186..0c83843b 100644
--- a/sigscript/MapTrainerWrapper.h
+++ b/sigscript/MapTrainerWrapper.h
@@ -15,44 +15,44 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __POKESCRIPTING_MAPTRAINERWRAPPER__
-#define __POKESCRIPTING_MAPTRAINERWRAPPER__
+#ifndef __SIGSCRIPT_MAPTRAINERWRAPPER__
+#define __SIGSCRIPT_MAPTRAINERWRAPPER__
-// Pokescripting includes
+// Sigscript includes
#include "ObjectWrapper.h"
-// Pokemod includes
-#include "../pokemod/MapTrainer.h"
+// Sigmod includes
+#include "../sigmod/MapTrainer.h"
-namespace Pokescripting
+namespace Sigscript
{
// Forward declarations
class MapWrapper;
class MapTrainerTeamMemberWrapper;
class TrainerWrapper;
-class POKESCRIPTING_EXPORT MapTrainerWrapper : public ObjectWrapper
+class SIGSCRIPT_EXPORT MapTrainerWrapper : public ObjectWrapper
{
Q_OBJECT
public:
- static MapTrainerWrapper* create(const Pokemod::MapTrainer* trainer, MapWrapper* parent);
+ static MapTrainerWrapper* create(const Sigmod::MapTrainer* trainer, MapWrapper* parent);
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE TrainerWrapper* trainerClass();
Q_SCRIPTABLE int numberFight() const;
Q_SCRIPTABLE MapTrainerTeamMemberWrapper* leadTeamMember();
- Q_SCRIPTABLE Pokemod::Script script() const;
+ Q_SCRIPTABLE Sigmod::Script script() const;
Q_SCRIPTABLE MapTrainerTeamMemberWrapper* teamMember(const int index);
Q_SCRIPTABLE int teamMemberCount() const;
private:
- MapTrainerWrapper(const Pokemod::MapTrainer* trainer, MapWrapper* parent);
+ MapTrainerWrapper(const Sigmod::MapTrainer* trainer, MapWrapper* parent);
MapTrainerWrapper& operator=(const MapTrainerWrapper& rhs);
- const Pokemod::MapTrainer* m_trainer;
+ const Sigmod::MapTrainer* m_trainer;
};
}
-Q_DECLARE_METATYPE(Pokescripting::MapTrainerWrapper*)
+Q_DECLARE_METATYPE(Sigscript::MapTrainerWrapper*)
#endif