summaryrefslogtreecommitdiffstats
path: root/pokescripting/TrainerWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'pokescripting/TrainerWrapper.h')
-rw-r--r--pokescripting/TrainerWrapper.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/pokescripting/TrainerWrapper.h b/pokescripting/TrainerWrapper.h
index 3841bac3..766cc030 100644
--- a/pokescripting/TrainerWrapper.h
+++ b/pokescripting/TrainerWrapper.h
@@ -36,6 +36,7 @@ class POKESCRIPTING_EXPORT TrainerWrapper : public ObjectWrapper
QString name() const;
int moneyFactor() const;
QPixmap skin() const;
+ int depth() const;
int teamIntel() const;
int moveIntel() const;
int itemIntel() const;
@@ -68,6 +69,11 @@ inline QPixmap TrainerWrapper::TrainerWrapper::skin() const
return m_trainer->skin();
}
+inline int TrainerWrapper::TrainerWrapper::depth() const
+{
+ return m_trainer->depth();
+}
+
inline int TrainerWrapper::TrainerWrapper::teamIntel() const
{
return m_trainer->teamIntel();