foul-magics/Mage/src/main/java/mage/abilities/effects/OneShotEffect.java
2018-06-02 17:59:49 +02:00

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);
}
}