added Sealed tournaments

This commit is contained in:
BetaSteward 2011-02-10 22:00:47 -05:00
parent 44aefaf47a
commit f7ffbb4773
51 changed files with 652 additions and 143 deletions

View file

@ -153,10 +153,6 @@ public class Table implements Serializable {
state = TableState.SIDEBOARDING;
}
public void construct() {
state = TableState.CONSTRUCTING;
}
public String getName() {
return this.name;
}
@ -177,4 +173,8 @@ public class Table implements Serializable {
tableEventSource.addListener(listener);
}
public void initTournament() {
state = TableState.CONSTRUCTING;
}
}