forked from External/mage
* apply regex to change public copy constructors to protected * cleanup code using now protected constructors * fix manaBuilder weird casting of Mana into ConditionalMana
21 lines
418 B
Java
21 lines
418 B
Java
|
|
|
|
package mage.abilities.effects;
|
|
|
|
import mage.constants.EffectType;
|
|
import mage.constants.Outcome;
|
|
|
|
/**
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public abstract class OneShotEffect extends EffectImpl {
|
|
|
|
public OneShotEffect(Outcome outcome) {
|
|
super(outcome);
|
|
this.effectType = EffectType.ONESHOT;
|
|
}
|
|
|
|
protected OneShotEffect(final OneShotEffect effect) {
|
|
super(effect);
|
|
}
|
|
}
|