Package communist

Source Code of communist.Poker

package communist;

import communist.gui.PokerGUI;
import communist.poker.Deck;

public class Poker {
  public static void main(String[] args) {
    Deck d = new Deck();
    PokerGUI gui = new PokerGUI(d);
  }
}
TOP

Related Classes of communist.Poker

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.