Begin implementing adventures.

This commit is contained in:
Patrick Hulin 2019-12-09 11:30:11 -05:00
parent b0c01da007
commit 04a4b91a59
39 changed files with 495 additions and 69 deletions

View file

@ -0,0 +1,20 @@
/*
* 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 phulin
*/
public interface AdventureCardSpell extends Card {
@Override
AdventureCardSpell copy();
void setParentCard(AdventureCard card);
AdventureCard getParentCard();
}