addComponent(boardPanel, 1, 1, 1, 1);
players = new LinkedHashMap<String, Player>();
humanPlayer = new Player("Player", STARTING_CASH, this);
players.put("Player", humanPlayer);
players.put("Joe", new Player("Joe", STARTING_CASH, new BasicBot(0, 75)));
players.put("Mike", new Player("Mike", STARTING_CASH, new BasicBot(25, 50)));
players.put("Eddie", new Player("Eddie", STARTING_CASH, new BasicBot(50, 25)));
table = new Table(TABLE_TYPE, BIG_BLIND);
for (Player player : players.values()) {
table.addPlayer(player);
}