summaryrefslogtreecommitdiffstats
path: root/pokescripting/NatureWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'pokescripting/NatureWrapper.h')
-rw-r--r--pokescripting/NatureWrapper.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/pokescripting/NatureWrapper.h b/pokescripting/NatureWrapper.h
index 14a87ae8..c7feed18 100644
--- a/pokescripting/NatureWrapper.h
+++ b/pokescripting/NatureWrapper.h
@@ -47,28 +47,6 @@ class POKESCRIPTING_EXPORT NatureWrapper : public ObjectWrapper
const Pokemod::Nature* m_nature;
};
-
-inline NatureWrapper::NatureWrapper(const Pokemod::Nature* nature, QObject* parent) :
- ObjectWrapper(nature, parent),
- m_nature(nature)
-{
-}
-
-inline QString NatureWrapper::name() const
-{
- return m_nature->name();
-}
-
-inline Pokemod::Fraction NatureWrapper::stat(const int stat) const
-{
- return m_nature->stat(stat);
-}
-
-inline int NatureWrapper::weight() const
-{
- return m_nature->weight();
-}
-
}
#endif