Package jimmm.data

Examples of jimmm.data.GameOptions


    JFrame.setDefaultLookAndFeelDecorated(true);
    mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//    mainFrame.setLayout(new BoxLayout(mainFrame, BoxLayout.Y_AXIS));
    mainFrame.setLayout(new GridLayout(4, 1));
   
    GameOptions go = new GameOptions();
      go.initialCardsPerPlayer = 5;
    GameState gs = new GameState( new ArrayList<Player>(Arrays.asList(p1,p2)), go);
   
    TooSimpleHandRenderer h1 = new TooSimpleHandRenderer(p1, gs);
    TooSimpleHandRenderer h2 = new TooSimpleHandRenderer(p2,gs);
View Full Code Here

TOP

Related Classes of jimmm.data.GameOptions

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.