forked from External/mage
StartMultiGamesTest and class for getting access for Mage.Client GUI components.
This commit is contained in:
parent
8b77a67574
commit
11bec637ee
3 changed files with 162 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
package mage.client.components;
|
||||
|
||||
public enum MageComponents {
|
||||
TABLES_MENU_BUTTON("btnGames"),
|
||||
NEW_GAME_BUTTON("btnNewTable"),
|
||||
NEW_TABLE_OK_BUTTON("btnOK"),
|
||||
TABLE_WAITING_START_BUTTON("btnStart");
|
||||
|
||||
private String name;
|
||||
MageComponents(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return this.name;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue