Files
wagic/projects/mtg/include/MTGGamePhase.h
jean.chalard 39c5a3d465 J :
* Fix u32 into JButtons.
* Add a few comments.
* Remove useless variables.
2010-02-24 17:28:17 +00:00

26 lines
462 B
C++

#ifndef _MTGGAMEPHASE_H_
#define _MTGGAMEPHASE_H_
#include "ActionElement.h"
#include "GameObserver.h"
#include <JGui.h>
#include <JLBFont.h>
class MTGGamePhase: public ActionElement {
protected:
float animation;
int currentState;
JLBFont * mFont;
public:
MTGGamePhase(int id);
virtual void Update(float dt);
bool CheckUserInput(JButton key);
virtual MTGGamePhase * clone() const;
virtual ostream& toString(ostream& out) const;
};
#endif