//there should be exactly 2 players? not fault tolerant!!
public class Player {
    public String glyph;
    public Player (String s) {
      glyph = s;
    }
}
