summaryrefslogtreecommitdiffstats
path: root/sigscript
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-28 00:20:20 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-28 00:25:22 -0500
commit3655fc2210bcfaa02950754b57b52865b8d74071 (patch)
tree98d015a00c4de707e1d753bc017099fe2910736c /sigscript
parent52d349be9a434015f26aa86b533d6a55e319d58f (diff)
downloadsigen-3655fc2210bcfaa02950754b57b52865b8d74071.tar.gz
sigen-3655fc2210bcfaa02950754b57b52865b8d74071.tar.xz
sigen-3655fc2210bcfaa02950754b57b52865b8d74071.zip
Removed useATB and allowSwitchStyle from Rules (to be handled by arena plugins)
Diffstat (limited to 'sigscript')
-rw-r--r--sigscript/RulesWrapper.cpp11
-rw-r--r--sigscript/RulesWrapper.h2
2 files changed, 0 insertions, 13 deletions
diff --git a/sigscript/RulesWrapper.cpp b/sigscript/RulesWrapper.cpp
index 2278e6ec..bbf8b32d 100644
--- a/sigscript/RulesWrapper.cpp
+++ b/sigscript/RulesWrapper.cpp
@@ -56,11 +56,6 @@ bool RulesWrapper::criticalDomains() const
return m_rules->criticalDomains();
}
-bool RulesWrapper::useATB() const
-{
- return m_rules->useATB();
-}
-
int RulesWrapper::numBoxes() const
{
ALLOW_OVERRIDE_SO(rules, int, numBoxes);
@@ -137,12 +132,6 @@ int RulesWrapper::maxTotalWeight() const
return m_rules->maxTotalWeight();
}
-bool RulesWrapper::allowSwitchStyle() const
-{
- ALLOW_OVERRIDE_SO(rules, bool, allowSwitchStyle);
- return m_rules->allowSwitchStyle();
-}
-
bool RulesWrapper::specialSplit() const
{
return m_rules->specialSplit();
diff --git a/sigscript/RulesWrapper.h b/sigscript/RulesWrapper.h
index af68aec0..2d97aed3 100644
--- a/sigscript/RulesWrapper.h
+++ b/sigscript/RulesWrapper.h
@@ -39,7 +39,6 @@ class SIGSCRIPT_EXPORT RulesWrapper : public ObjectWrapper
Q_SCRIPTABLE bool genderAllowed() const;
Q_SCRIPTABLE bool breedingAllowed() const;
Q_SCRIPTABLE bool criticalDomains() const;
- Q_SCRIPTABLE bool useATB() const;
Q_SCRIPTABLE int numBoxes() const;
Q_SCRIPTABLE int boxSize() const;
Q_SCRIPTABLE int maxParty() const;
@@ -53,7 +52,6 @@ class SIGSCRIPT_EXPORT RulesWrapper : public ObjectWrapper
Q_SCRIPTABLE int maxStages() const;
Q_SCRIPTABLE int maxMoney() const;
Q_SCRIPTABLE int maxTotalWeight() const;
- Q_SCRIPTABLE bool allowSwitchStyle() const;
Q_SCRIPTABLE bool specialSplit() const;
Q_SCRIPTABLE bool specialDVSplit() const;
Q_SCRIPTABLE bool effortValuesAllowed() const;