Package net.sf.nebulacards.main

Examples of net.sf.nebulacards.main.PileOfCards.shuffle()


   */
  public static void main(String[] args) {
    Frame parent = new Frame();
   
    PileOfCards deck = PileOfCards.getStandardDeck();
    deck.shuffle();
    PileOfCards hand = new PileOfCards(13);
    for (int i = 0; i < 13; i++)
      hand.add(deck.takeTop());
    PassWindow pw = new PassWindow(parent, hand, 3, "Bob");
    JOptionPane.showMessageDialog(null, "yo");
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.