Restructured Mage module

This commit is contained in:
poixen 2015-11-29 21:56:49 +01:00
parent 727d62babb
commit 46eb6c0525
1502 changed files with 11 additions and 9 deletions

View file

@ -0,0 +1,28 @@
package mage.constants;
/**
*
* @author North
*/
public enum TableState {
WAITING ("Waiting for players"),
READY_TO_START("Waiting to start"),
STARTING ("Starting"),
DRAFTING ("Drafting"),
CONSTRUCTING ("Constructing"),
DUELING ("Dueling"),
SIDEBOARDING ("Sideboarding"),
FINISHED ("Finished");
private final String text;
TableState(String text) {
this.text = text;
}
@Override
public String toString() {
return text;
}
}