forked from External/mage
28 lines
484 B
Java
28 lines
484 B
Java
|
|
|
|
package mage.choices;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
|
|
public class ChoiceLeftOrRight extends ChoiceImpl {
|
|
|
|
public ChoiceLeftOrRight() {
|
|
super(true);
|
|
this.choices.add("Left");
|
|
this.choices.add("Right");
|
|
this.message = "Choose left or right";
|
|
}
|
|
|
|
public ChoiceLeftOrRight(final ChoiceLeftOrRight choice) {
|
|
super(choice);
|
|
}
|
|
|
|
@Override
|
|
public ChoiceLeftOrRight copy() {
|
|
return new ChoiceLeftOrRight(this);
|
|
}
|
|
|
|
}
|