forked from External/mage
* UI: added playable/activatable cards highlight in all zone and windows (mana abilities, commander, graveyard, revealed, etc);
This commit is contained in:
parent
fe52ffd56a
commit
f6123037ec
15 changed files with 302 additions and 192 deletions
|
|
@ -1,21 +1,18 @@
|
|||
|
||||
|
||||
package mage.view;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Plopman
|
||||
*/
|
||||
public interface CommandObjectView extends Serializable {
|
||||
public String getExpansionSetCode();
|
||||
public interface CommandObjectView extends SelectableObjectView {
|
||||
|
||||
public String getName();
|
||||
String getExpansionSetCode();
|
||||
|
||||
public UUID getId();
|
||||
String getName();
|
||||
|
||||
public List<String> getRules();
|
||||
UUID getId();
|
||||
|
||||
List<String> getRules();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue