Files
wagic/projects/mtg/src/MTGSpellStack.cpp
jean.chalard c97dd1f260 J :
* Remove ^M's.
* Re-indent automatically.
* Remove whitespace at the end of lines.
2008-11-12 13:45:42 +00:00

20 lines
331 B
C++

#include "MTGSpellStack.h"
MTGSpellStack::MTGSpellStack(){
cursor = -1;
}
void MTGSpellStack::addSpell(Ability * ability){
cursor++;
spellStack[cursor] ability;
}
int MTGSpellStack::resolve(){
if (cursor < 0)
return 0;
int result = cursor;
cursor--;
(spellStack[cursor + 1])->resolve();
return (result+1);
}