forked from External/mage
22 lines
367 B
Java
22 lines
367 B
Java
package mage.constants;
|
|
|
|
/**
|
|
*
|
|
* @author North
|
|
*/
|
|
public enum MultiplayerAttackOption {
|
|
MULTIPLE("Attack Multiple Players"),
|
|
LEFT("Attack Left"),
|
|
RIGHT("Attack Right");
|
|
|
|
private final String text;
|
|
|
|
MultiplayerAttackOption(String text) {
|
|
this.text = text;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return text;
|
|
}
|
|
}
|