Adjusted Power-Up Code

This commit is contained in:
PlatinumSkink
2015-09-23 14:23:41 +02:00
parent f6b6f05c37
commit 1b0d87e862
3 changed files with 26 additions and 10 deletions
+3
View File
@@ -82,6 +82,8 @@ public:
void SetPastLives(const int& pastLives) { m_PastLives = pastLives; }
int& MultiBalls() { return m_MultiBalls; }
void SetMultiBalls(const int& multiBalls) { m_MultiBalls = multiBalls; }
int& PowerUps() { return m_PowerUps; }
void SetPowerUps(const int& powerUps) { m_PowerUps = powerUps; }
int& Score() { return m_Score; }
void SetScore(const int& score) { m_Score = score; }
int& NumberOfBricks() { return m_NumberOfBricks; }
@@ -101,6 +103,7 @@ private:
int m_Lives = 3;
int m_PastLives = 3;
int m_MultiBalls = 0;
int m_PowerUps = 0;
int m_Score = 0;
int m_NumberOfBricks;
int m_Rows = 7;