use of com.gianlu.pyxreborn.client.UI.ListCells.GameCell in project PretendYoureXyzzyReborn by devgianlu.
the class MainUI method initialize.
@FXML
public void initialize() {
gamesList.setCellFactory(param -> new GameCell(stage, client, me));
usersList.setCellFactory(param -> new UserCell());
refreshGamesList();
refreshUsersList();
}