Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1. package ch.epfl.javass.jass;
  2.  
  3. import java.util.Map;
  4.  
  5. import ch.epfl.javass.jass.Card.Color;
  6.  
  7. public interface Player {
  8.  
  9.     public static  Card cardToPlay(TurnState state, CardSet hand)
  10.     {
  11.         PackedTrick.playableCards(state, pkHand)
  12.     }
  13.     public  void setPlayers(PlayerId ownId, Map<PlayerId, String> playerNames);
  14.     public void updateHand(CardSet newHand);
  15.     public void setTrump(Color trump);
  16.     public void updateTrick(Trick newTrick);
  17.     public  void updateScore(Score score);
  18.     public  void setWinningTeam(TeamId winningTeam);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement