UI changes + created lite mode (client without images) for remote desktop work

This commit is contained in:
BetaSteward 2011-06-16 14:56:35 -04:00
parent e40caef07b
commit 89770db58e
12 changed files with 150 additions and 85 deletions

View file

@ -29,6 +29,7 @@
package mage.game;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import java.util.UUID;
import mage.Constants.TableState;
@ -51,6 +52,7 @@ public class Table implements Serializable {
private String name;
private String controllerName;
private String gameType;
private Date createTime;
private Seat[] seats;
private int numSeats;
private boolean isTournament;
@ -80,6 +82,7 @@ public class Table implements Serializable {
this.gameType = gameType;
this.name = name;
this.controllerName = controllerName;
this.createTime = new Date();
createSeats(playerTypes);
this.validator = validator;
}
@ -129,6 +132,10 @@ public class Table implements Serializable {
return validator.getName();
}
public Date getCreateTime() {
return createTime;
}
public boolean isTournament() {
return this.isTournament;
}