-Fixed issue 24 using a Limitor...probably not the best solution, but I think it's clean enough...
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-09-23 11:16:24 +00:00
parent 380a5a040e
commit b1d8331482
2 changed files with 25 additions and 1 deletions

View File

@@ -19,8 +19,10 @@ class MTGPutInPlayRule:public MTGAbility{
virtual MTGPutInPlayRule * clone() const;
};
class MTGAttackRule:public MTGAbility{
class MTGAttackRule:public MTGAbility, public Limitor{
public:
virtual bool select(Target*);
virtual bool greyout(Target*);
int isReactingToClick(MTGCardInstance * card, ManaCost * mana = NULL);
int reactToClick(MTGCardInstance * card);
int testDestroy();