Examples of pickTrump()


Examples of com.svanloon.game.wizard.client.player.Player.pickTrump()

      round.setTrump(trump);

      if(trump != null && trump.getValue().equals(Value.WIZARD)) {
        Player trumpPicker = _playerCollection.get(dealer);
        //_logger.info(trumpPicker.getName() + " gets to pick trump.");
        trump = new Card(null, trumpPicker.pickTrump(), -1);
        gameEventNotifier.notify(new NewTrumpEvent(trump));
        round.setTrump(trump);
      }
      int cardsDealt = roundId;
      Bid bid = bid(trump, lead, cardsDealt, round);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.