Cleaned up my phasebar code and merged it into the overall item selection code

This commit is contained in:
Xawotihs
2011-08-04 05:57:10 +00:00
parent 46dfe03099
commit eac5a35b43
6 changed files with 61 additions and 49 deletions
+4
View File
@@ -13,12 +13,16 @@ protected:
float animation;
int currentState;
WFont * mFont;
static MTGGamePhase* instance;
public:
MTGGamePhase(int id);
static MTGGamePhase* GetInstance() { return instance; };
virtual void Update(float dt);
bool CheckUserInput(JButton key);
virtual MTGGamePhase * clone() const;
virtual ostream& toString(ostream& out) const;
bool NextGamePhase();
};
#endif