foul-magics/Mage/src/main/java/mage/game/turn/UpkeepStep.java
2018-06-02 17:59:49 +02:00

30 lines
596 B
Java

package mage.game.turn;
import mage.constants.PhaseStep;
import mage.game.events.GameEvent.EventType;
/**
*
* @author BetaSteward_at_googlemail.com
*/
public class UpkeepStep extends Step {
public UpkeepStep() {
super(PhaseStep.UPKEEP, true);
this.stepEvent = EventType.UPKEEP_STEP;
this.preStepEvent = EventType.UPKEEP_STEP_PRE;
this.postStepEvent = EventType.UPKEEP_STEP_POST;
}
public UpkeepStep(final UpkeepStep step) {
super(step);
}
@Override
public UpkeepStep copy() {
return new UpkeepStep(this);
}
}