-removed unneeded file
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-08-30 10:08:29 +00:00
parent 89419f90a7
commit e4a2c39683
5 changed files with 1 additions and 164 deletions

View File

@@ -1,36 +0,0 @@
#ifndef _MTGGUIHAND_H_
#define _MTGGUIHAND_H_
#include "GuiCardsController.h"
#include "Player.h"
#include "GameObserver.h"
#define HAND_SHOW_ANIMATION 1
#define HAND_HIDE_ANIMATION 2
#define HAND_SHOW 3
#define HAND_HIDE 4
class Player;
class GuiCardscontroller;
class MTGGuiHand: public GuiCardsController{
protected:
GameObserver* game;
int currentId[2];
Player * currentPlayer;
int mShowHand;
float mAnimState;
JLBFont * mFont;
public:
MTGGuiHand(GameObserver*);
void Update(float dt);
bool CheckUserInput(u32 key);
virtual void Render();
void updateCards();
void showHand (bool show);// WALDORF - added
};
#endif