make plane and emblem implement Controllable to give access to the isControlledBy method

This commit is contained in:
Ingmar Goudt 2018-09-30 12:48:03 +02:00
parent e614b8573e
commit fe3f6fb6c8
8 changed files with 13 additions and 11 deletions

View file

@ -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();