- Added Waldorf's changes
This commit is contained in:
wagic.the.homebrew
2009-03-03 11:03:38 +00:00
parent 7241bba0db
commit 58700417da
6 changed files with 88 additions and 24 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ class AIPlayer: public Player{
AIStats * getStats();
public:
void End(){};
virtual int displayStack(){return 1;};
virtual int displayStack(){return 0;};
AIStats * stats;
ManaCost * getPotentialMana();
AIPlayer(MTGPlayerCards * _deck, string deckFile);
+3
View File
@@ -8,6 +8,9 @@ using std::string;
#define OPTIONS_MUSICVOLUME "musicVolume"
#define OPTIONS_SFXVOLUME "sfxVolume"
// WALDORF - added
#define OPTIONS_INTERRUPT_SECONDS "interruptSeconds"
#define OPTIONS_SAVEFILE RESPATH"/settings/options.txt"
+2 -1
View File
@@ -27,7 +27,8 @@ class MTGGuiHand: public GuiCardsController{
void Update(float dt);
bool CheckUserInput(u32 key);
virtual void Render();
void updateCards();
void updateCards();
void showHand (bool show);// WALDORF - added
};