summaryrefslogtreecommitdiffstats
path: root/pokescripting/RulesWrapper.h
diff options
context:
space:
mode:
Diffstat (limited to 'pokescripting/RulesWrapper.h')
-rw-r--r--pokescripting/RulesWrapper.h122
1 files changed, 0 insertions, 122 deletions
diff --git a/pokescripting/RulesWrapper.h b/pokescripting/RulesWrapper.h
index 8d907aa9..db6d1afc 100644
--- a/pokescripting/RulesWrapper.h
+++ b/pokescripting/RulesWrapper.h
@@ -67,128 +67,6 @@ class POKESCRIPTING_EXPORT RulesWrapper : public ObjectWrapper
const Pokemod::Rules* m_rules;
};
-
-inline RulesWrapper::RulesWrapper(const Pokemod::Rules* rules, QObject* parent) :
- ObjectWrapper(rules, parent),
- m_rules(rules)
-{
-}
-
-inline bool RulesWrapper::genderAllowed() const
-{
- return m_rules->genderAllowed();
-}
-
-inline bool RulesWrapper::breedingAllowed() const
-{
- return m_rules->breedingAllowed();
-}
-
-inline bool RulesWrapper::criticalDomains() const
-{
- return m_rules->criticalDomains();
-}
-
-inline bool RulesWrapper::useTurns() const
-{
- return m_rules->useTurns();
-}
-
-inline int RulesWrapper::numBoxes() const
-{
- return m_rules->numBoxes();
-}
-
-inline int RulesWrapper::boxSize() const
-{
- return m_rules->boxSize();
-}
-
-inline int RulesWrapper::maxParty() const
-{
- return m_rules->maxParty();
-}
-
-inline int RulesWrapper::maxFight() const
-{
- return m_rules->maxFight();
-}
-
-inline int RulesWrapper::maxPlayers() const
-{
- return m_rules->maxPlayers();
-}
-
-inline int RulesWrapper::maxHeldItems() const
-{
- return m_rules->maxHeldItems();
-}
-
-inline int RulesWrapper::maxAbilities() const
-{
- return m_rules->maxAbilities();
-}
-
-inline int RulesWrapper::maxNatures() const
-{
- return m_rules->maxNatures();
-}
-
-inline int RulesWrapper::maxMoves() const
-{
- return m_rules->maxMoves();
-}
-
-inline int RulesWrapper::maxLevel() const
-{
- return m_rules->maxLevel();
-}
-
-inline int RulesWrapper::maxStages() const
-{
- return m_rules->maxStages();
-}
-
-inline int RulesWrapper::maxMoney() const
-{
- return m_rules->maxMoney();
-}
-
-inline bool RulesWrapper::hardCash() const
-{
- return m_rules->hardCash();
-}
-
-inline bool RulesWrapper::allowSwitchStyle() const
-{
- return m_rules->allowSwitchStyle();
-}
-
-inline bool RulesWrapper::specialSplit() const
-{
- return m_rules->specialSplit();
-}
-
-inline bool RulesWrapper::specialDVSplit() const
-{
- return m_rules->specialDVSplit();
-}
-
-inline bool RulesWrapper::effortValuesAllowed() const
-{
- return m_rules->effortValuesAllowed();
-}
-
-inline int RulesWrapper::maxTotalEV() const
-{
- return m_rules->maxTotalEV();
-}
-
-inline int RulesWrapper::maxEVPerStat() const
-{
- return m_rules->maxEVPerStat();
-}
-
}
#endif