foul-magics/Mage/src/main/java/mage/abilities/effects/OneShotEffect.java
Susucre f75b1c9f0a
Code cleanup: protect all copy constructors (#10750)
* apply regex to change public copy constructors to protected
* cleanup code using now protected constructors
* fix manaBuilder weird casting of Mana into ConditionalMana
2023-08-04 19:34:58 -04:00

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