forked from External/mage
23 lines
419 B
Java
23 lines
419 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;
|
|
}
|
|
|
|
public OneShotEffect(final OneShotEffect effect) {
|
|
super(effect);
|
|
}
|
|
|
|
}
|