mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Player.java was missing from previous commit.
This commit is contained in:
parent
06624ed116
commit
ef37e40f9f
1 changed files with 2 additions and 0 deletions
|
@ -56,6 +56,7 @@ import mage.target.common.TargetCardInLibrary;
|
||||||
import mage.util.Copyable;
|
import mage.util.Copyable;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
@ -91,6 +92,7 @@ public interface Player extends MageItem, Copyable<Player> {
|
||||||
public boolean canPaySacrificeCost();
|
public boolean canPaySacrificeCost();
|
||||||
public void setLifeTotalCanChange(boolean lifeTotalCanChange);
|
public void setLifeTotalCanChange(boolean lifeTotalCanChange);
|
||||||
public int damage(int damage, UUID sourceId, Game game, boolean combatDamage, boolean preventable);
|
public int damage(int damage, UUID sourceId, Game game, boolean combatDamage, boolean preventable);
|
||||||
|
public int damage(int damage, UUID sourceId, Game game, boolean combatDamage, boolean preventable, ArrayList<UUID> appliedEffects);
|
||||||
public Cards getHand();
|
public Cards getHand();
|
||||||
public int getLandsPlayed();
|
public int getLandsPlayed();
|
||||||
public int getLandsPerTurn();
|
public int getLandsPerTurn();
|
||||||
|
|
Loading…
Reference in a new issue