forked from External/mage
33 lines
887 B
Java
33 lines
887 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;
|
|
|
|
import mage.abilities.Ability;
|
|
import mage.game.Game;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public class ApprovingObject {
|
|
|
|
private final Ability approvingAbility;
|
|
private final MageObjectReference approvingMageObjectReference;
|
|
|
|
public ApprovingObject(Ability source, Game game) {
|
|
this.approvingAbility = source;
|
|
this.approvingMageObjectReference = new MageObjectReference(source.getSourceId(), game);
|
|
}
|
|
|
|
public Ability getApprovingAbility() {
|
|
return approvingAbility;
|
|
}
|
|
|
|
public MageObjectReference getApprovingMageObjectReference() {
|
|
return approvingMageObjectReference;
|
|
}
|
|
|
|
}
|