Guest User

Untitled

a guest
Apr 26th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. import aguiaj.cards.utils.*;
  2. import aguiaj.cards.*;
  3.  
  4. public class Jogador {
  5. public CardHand mao;
  6.  
  7. public Jogador(CardHand mao){
  8. this.mao = mao;
  9.  
  10. }
  11.  
  12. public Card aJogar(int pos){
  13.  
  14. Card aJogar = this.mao.get(pos);
  15. this.mao.remove(pos);
  16. return aJogar;
  17. }
  18. }
Add Comment
Please, Sign In to add comment