int i = 0;
for(Player z : g.getPlayers()){
if(z != p){
gZoneIAMap.put(z,new GraphicsZoneNumber(z.getZones().get("Hand")));
deckLayoutBase.addZone(gZoneIAMap.get(z),new Constraint(Constraint.NORTH,i));
i++;
}
}
// lay down graphical zones
deckLayoutBase.addZone(Talon,new Constraint(Constraint.CENTER,0));
deckLayoutBase.addZone(Hand,new Constraint(Constraint.SOUTH,0));
// add graphical zone to Devint Uno deck
this.add(Talon);
this.add(Hand);;
for(Player z : g.getPlayers()){