remove isCreature from CardHelper, move to Cardview

This commit is contained in:
ingmargoudt 2017-04-06 22:07:59 +02:00
parent f22ebd3677
commit 63df7f65a7
4 changed files with 19 additions and 25 deletions

View file

@ -957,4 +957,8 @@ public class CardView extends SimpleCardView {
this.canAttack = canAttack;
}
public boolean isCreature(){
return cardTypes.contains(CardType.CREATURE);
}
}