summaryrefslogtreecommitdiffstats
path: root/sigmod/Rules.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-09-25 22:55:25 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-09-25 22:55:25 +0000
commit64730b32e2c595469eb23e9cd40332b4a80e3e27 (patch)
treea75a17a7c7ac78e2e323e1cdecef8f6a3939f844 /sigmod/Rules.h
parent4c4fdc8d4540bd1bd52021b502f05f27a8ef98e1 (diff)
downloadsigen-64730b32e2c595469eb23e9cd40332b4a80e3e27.tar.gz
sigen-64730b32e2c595469eb23e9cd40332b4a80e3e27.tar.xz
sigen-64730b32e2c595469eb23e9cd40332b4a80e3e27.zip
[FIX] Removed *_End defines
[FIX] Added weights to items and associated fields [FIX] Option for pausing during ATB battles when choosing moves added git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@267 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigmod/Rules.h')
-rw-r--r--sigmod/Rules.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/sigmod/Rules.h b/sigmod/Rules.h
index 0373264c..5e491f71 100644
--- a/sigmod/Rules.h
+++ b/sigmod/Rules.h
@@ -47,6 +47,7 @@ class SIGMOD_EXPORT Rules : public Object
void setBreedingAllowed(const bool breedingAllowed);
void setCriticalDomains(const bool criticalDomains);
void setUseTurns(const bool useTurns);
+ void setPausedATB(const bool pausedATB);
void setNumBoxes(const int numBoxes);
void setBoxSize(const int boxSize);
void setMaxParty(const int maxParty);
@@ -59,6 +60,7 @@ class SIGMOD_EXPORT Rules : public Object
void setMaxLevel(const int maxLevel);
void setMaxStages(const int maxStage);
void setMaxMoney(const int maxMoney);
+ void setMaxTotalWeight(const int maxTotalWeight);
void setHardCash(const bool hardCash);
void setAllowSwitchStyle(const bool allowSwitchStyle);
void setSpecialSplit(const bool specialSplit);
@@ -71,6 +73,7 @@ class SIGMOD_EXPORT Rules : public Object
bool breedingAllowed() const;
bool criticalDomains() const;
bool useTurns() const;
+ bool pausedATB() const;
int numBoxes() const;
int boxSize() const;
int maxParty() const;
@@ -83,6 +86,7 @@ class SIGMOD_EXPORT Rules : public Object
int maxLevel() const;
int maxStages() const;
int maxMoney() const;
+ int maxTotalWeight() const;
bool hardCash() const;
bool allowSwitchStyle() const;
bool specialSplit() const;
@@ -97,6 +101,7 @@ class SIGMOD_EXPORT Rules : public Object
bool m_breedingAllowed;
bool m_criticalDomains;
bool m_useTurns;
+ bool m_pausedATB;
int m_numBoxes;
int m_boxSize;
int m_maxParty;
@@ -109,6 +114,7 @@ class SIGMOD_EXPORT Rules : public Object
int m_maxLevel;
int m_maxStages;
int m_maxMoney;
+ int m_maxTotalWeight;
bool m_hardCash;
bool m_allowSwitchStyle;
bool m_specialSplit;