forked from External/mage
* Aftermath Ability implementation complete (At least until we see comprehensive rules that contradict the way I assumed it will work) * Aftermath Card Frame rendering complete * Normal Split and Fuse Split card frame rendering complete * Amonket Split card CMC changes NOT made, but left for a separate commit
20 lines
398 B
Java
20 lines
398 B
Java
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package mage.cards;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public interface SplitCardHalf extends Card {
|
|
|
|
@Override
|
|
SplitCardHalf copy();
|
|
|
|
void setParentCard(SplitCard card);
|
|
|
|
SplitCard getParentCard();
|
|
}
|