package GameControl; public class Player { private int[] cards; private int playerNum; public int[] getCards() { return cards; } public void setCards(int[] cards) { this.cards = cards; } public int getPlayerNum() { return playerNum; } public void setPlayerNum(int playerNum) { this.playerNum = playerNum; } }