forked from External/mage
* Added return code to addCounter method.
This commit is contained in:
parent
5ee29a14e6
commit
058d25fa56
5 changed files with 52 additions and 31 deletions
|
|
@ -150,13 +150,13 @@ public interface Card extends MageObject {
|
|||
|
||||
Counters getCounters(Game game);
|
||||
|
||||
void addCounters(String name, int amount, Game game);
|
||||
boolean addCounters(String name, int amount, Game game);
|
||||
|
||||
void addCounters(String name, int amount, Game game, ArrayList<UUID> appliedEffects);
|
||||
boolean addCounters(String name, int amount, Game game, ArrayList<UUID> appliedEffects);
|
||||
|
||||
void addCounters(Counter counter, Game game);
|
||||
boolean addCounters(Counter counter, Game game);
|
||||
|
||||
void addCounters(Counter counter, Game game, ArrayList<UUID> appliedEffects);
|
||||
boolean addCounters(Counter counter, Game game, ArrayList<UUID> appliedEffects);
|
||||
|
||||
void removeCounters(String name, int amount, Game game);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue