mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
20 lines
370 B
Java
20 lines
370 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(int power, int toughness);
|
|
|
|
void setPT(MageInt power, MageInt toughness);
|
|
}
|