Package ipm.gerdc.baccarat.util

Examples of ipm.gerdc.baccarat.util.ShuffleCards


    gBean.setGameTime(GameTools.getCurrentTime());
  }

  private void shuffleCards() {
    int whiteCard = (SysConfig.getCutTail() * SysConfig.getNumDeck() * GameTools.DECK_SIZE) / 100;
    ShuffleCards sc = new ShuffleCards();
    cardShoe = sc.getCardShoe();
    shuffle = false;
    cardShoe.insertElementAt(GameTools.WhiteCard, whiteCard);
    // cardShoe.showCards();
    for (int j = 0; j < SysConfig.getCutHead(); j++) {
      cardShoe.drawCard();
View Full Code Here

TOP

Related Classes of ipm.gerdc.baccarat.util.ShuffleCards

Copyright © 2018 www.massapicom. 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.