Files
wagic/projects/mtg/include/MTGGamePhase.h
jean.chalard 3518166189 J :
* Input fix.
* A lot of code cleaning spread across a lot of files.
2008-11-24 12:11:16 +00:00

25 lines
394 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 Render();
virtual void Update(float dt);
bool CheckUserInput(u32 key);
};
#endif