Files
wagic/projects/mtg/include/MTGGamePhase.h
wagic.the.homebrew@gmail.com 01c62d04bf Erwan
-removing useless code
-fixed a few cards (incorrect set)
2009-07-18 14:26:58 +00:00

26 lines
458 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(u32 key);
virtual MTGGamePhase * clone() const;
virtual ostream& toString(ostream& out) const;
};
#endif