forked from External/mage
GUI: improved main and battlefield menus (related to #11533):
- main menu: better naming for deck editor; - battlefield menu: added deck view for computer players, better naming; - network: improved experimental connection;
This commit is contained in:
parent
ba8650b4e2
commit
6aaaa8cb46
11 changed files with 187 additions and 132 deletions
|
|
@ -101,12 +101,21 @@ public final class Constants {
|
|||
}
|
||||
|
||||
public enum DeckEditorMode {
|
||||
FREE_BUILDING(""),
|
||||
LIMITED_BUILDING("building"),
|
||||
LIMITED_SIDEBOARD_BUILDING("sideboard building"),
|
||||
SIDEBOARDING("sideboarding"),
|
||||
VIEW_LIMITED_DECK("view");
|
||||
|
||||
FREE_BUILDING,
|
||||
LIMITED_BUILDING,
|
||||
LIMITED_SIDEBOARD_BUILDING,
|
||||
SIDEBOARDING,
|
||||
VIEW_LIMITED_DECK
|
||||
private String title;
|
||||
|
||||
DeckEditorMode(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return title;
|
||||
}
|
||||
}
|
||||
|
||||
public enum SortBy {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue