summaryrefslogtreecommitdiffstats
path: root/pokescripting/PokemodWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'pokescripting/PokemodWrapper.h')
-rw-r--r--pokescripting/PokemodWrapper.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/pokescripting/PokemodWrapper.h b/pokescripting/PokemodWrapper.h
index 42bb1878..08125a79 100644
--- a/pokescripting/PokemodWrapper.h
+++ b/pokescripting/PokemodWrapper.h
@@ -59,12 +59,6 @@ class POKESCRIPTING_EXPORT PokemodWrapper : public ObjectWrapper
QString version() const;
QString description() const;
const MapWarpWrapper* startWarp() const;
- QPixmap walkSkin() const;
- QPixmap bikeSkin() const;
- QPixmap surfSkin() const;
- QPixmap flySkin() const;
- QPixmap fishSkin() const;
- QPixmap surfFishSkin() const;
Pokemod::Fraction effectiveness(const TypeWrapper* attacker, const TypeWrapper* defender) const;
const RulesWrapper* rules() const;
@@ -121,36 +115,6 @@ inline const MapWarpWrapper* PokemodWrapper::startWarp() const
return new MapWarpWrapper(m_pokemod->mapById(m_pokemod->startMap())->warpById(m_pokemod->startWarp()), const_cast<PokemodWrapper*>(this));
}
-inline QPixmap PokemodWrapper::walkSkin() const
-{
- return m_pokemod->walkSkin();
-}
-
-inline QPixmap PokemodWrapper::bikeSkin() const
-{
- return m_pokemod->bikeSkin();
-}
-
-inline QPixmap PokemodWrapper::surfSkin() const
-{
- return m_pokemod->surfSkin();
-}
-
-inline QPixmap PokemodWrapper::flySkin() const
-{
- return m_pokemod->flySkin();
-}
-
-inline QPixmap PokemodWrapper::fishSkin() const
-{
- return m_pokemod->fishSkin();
-}
-
-inline QPixmap PokemodWrapper::surfFishSkin() const
-{
- return m_pokemod->surfFishSkin();
-}
-
inline Pokemod::Fraction PokemodWrapper::effectiveness(const TypeWrapper* attacker, const TypeWrapper* defender) const
{
return m_pokemod->typechart(m_pokemod->typeIndex(attacker->id()), m_pokemod->typeIndex(defender->id()));