forked from External/mage
Merge pull request #5351 from magefree/plane-and-emblem-implements-controllable
Refactor: make plane and emblem implement Controllable
This commit is contained in:
commit
08e88b8a65
8 changed files with 13 additions and 11 deletions
|
|
@ -3,17 +3,16 @@ package mage.game.command;
|
|||
|
||||
import java.util.UUID;
|
||||
import mage.MageObject;
|
||||
import mage.game.Controllable;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Viserion, nantuko
|
||||
*/
|
||||
public interface CommandObject extends MageObject {
|
||||
public interface CommandObject extends MageObject, Controllable {
|
||||
|
||||
UUID getSourceId();
|
||||
|
||||
UUID getControllerId();
|
||||
|
||||
void assignNewId();
|
||||
|
||||
MageObject getSourceObject();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue