forked from External/mage
18 lines
328 B
Java
18 lines
328 B
Java
package mage.cards;
|
|
|
|
import mage.MageInt;
|
|
|
|
/**
|
|
* @author JayDi85
|
|
*/
|
|
public interface ModalDoubleFacesCardHalf extends Card {
|
|
|
|
@Override
|
|
ModalDoubleFacesCardHalf copy();
|
|
|
|
void setParentCard(ModalDoubleFacesCard card);
|
|
|
|
ModalDoubleFacesCard getParentCard();
|
|
|
|
void setPT(MageInt power, MageInt toughtness);
|
|
}
|