diff --git a/Cribbage/out/production/Cribbage/cribbage/IPlayer.class b/Cribbage/out/production/Cribbage/cribbage/IPlayer.class index 5bf30b3e1009af0db7502e9bd2428d1574558ba9..0333e8d97086a0e9f30cbe899a0e3119540e16ea 100644 Binary files a/Cribbage/out/production/Cribbage/cribbage/IPlayer.class and b/Cribbage/out/production/Cribbage/cribbage/IPlayer.class differ diff --git a/Cribbage/src/cribbage/IPlayer.java b/Cribbage/src/cribbage/IPlayer.java index 765aba210e41ae9b8360b3f0c5e5fb82bff75be5..05eb568068f0a4daf255d9bcbcce047bf15636c0 100644 --- a/Cribbage/src/cribbage/IPlayer.java +++ b/Cribbage/src/cribbage/IPlayer.java @@ -8,14 +8,10 @@ public abstract class IPlayer { int id; Deck deck; // Need this since can't get from hand to deck Hand hand; - int score; void setId(int id) { this.id = id; } - public int getId(){return id;} - public void setScore(int score){this.score = score;} - public int getScore(){return score;} void startSegment(Deck deck, Hand hand) {this.deck = deck; this.hand = hand;} abstract Card discard(); boolean emptyHand() {return hand.isEmpty();}