package jrummikub.model; import java.util.List; /** * Score of a single round */ public class Score { private List winners; private List points; /** * Create a new round score * * @param winners * set for each player among the winners * @param points * points of each player */ public Score(List winners, List points) { this.winners = winners; this.points = points; } /** * Get the winner list * * @return set for each player among the winners */ public List getWinners() { return winners; } /** * Get the point list * * @return points of each player */ public List getPoints() { return points; } }