forked from External/mage
added Sealed tournaments
This commit is contained in:
parent
44aefaf47a
commit
f7ffbb4773
51 changed files with 652 additions and 143 deletions
|
|
@ -43,10 +43,12 @@ public class TableClientMessage implements Serializable {
|
|||
private UUID tableId;
|
||||
private UUID gameId;
|
||||
private UUID playerId;
|
||||
private int time;
|
||||
|
||||
public TableClientMessage(Deck deck, UUID tableId) {
|
||||
public TableClientMessage(Deck deck, UUID tableId, int time) {
|
||||
this.deck = deck;
|
||||
this.tableId = tableId;
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public TableClientMessage(UUID gameId, UUID playerId) {
|
||||
|
|
@ -69,4 +71,8 @@ public class TableClientMessage implements Serializable {
|
|||
public UUID getPlayerId() {
|
||||
return playerId;
|
||||
}
|
||||
|
||||
public int getTime() {
|
||||
return time;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue