diff options
Diffstat (limited to 'pokescripting/MapEffectWrapper.h')
| -rw-r--r-- | pokescripting/MapEffectWrapper.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pokescripting/MapEffectWrapper.h b/pokescripting/MapEffectWrapper.h index 161838e2..bf2bb127 100644 --- a/pokescripting/MapEffectWrapper.h +++ b/pokescripting/MapEffectWrapper.h @@ -20,6 +20,7 @@ // Pokescripting includes #include "ObjectWrapper.h" +#include "SkinWrapper.h" // Pokemod includes #include "../pokemod/MapEffect.h" @@ -34,7 +35,7 @@ class POKESCRIPTING_EXPORT MapEffectWrapper : public ObjectWrapper MapEffectWrapper(const Pokemod::MapEffect* effect, QObject* parent); public slots: QString name() const; - QPixmap skin() const; + const SkinWrapper* skin() const; bool isGhost() const; private: MapEffectWrapper& operator=(const MapEffectWrapper& rhs); @@ -53,9 +54,9 @@ inline QString MapEffectWrapper::name() const return m_effect->name(); } -inline QPixmap MapEffectWrapper::skin() const +inline const Pokescripting::SkinWrapper* MapEffectWrapper::skin() const { - return m_effect->skin(); + return new SkinWrapper(pokemod()->skinById(m_effect->skin()), const_cast<MapEffectWrapper*>(this)); } inline bool MapEffectWrapper::isGhost() const |
