Package jimmm.data

Examples of jimmm.data.Player


import jimmm.gui.TooSimpleHandRenderer;

public class VerySimpleDuel {

  public static void main(String[] args) {
    Player p1 = new Player("Bob");
    Player p2 = new Player("Alice");
   
    JFrame mainFrame = new JFrame("Testduell");
    JFrame.setDefaultLookAndFeelDecorated(true);
    mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//    mainFrame.setLayout(new BoxLayout(mainFrame, BoxLayout.Y_AXIS));
View Full Code Here

TOP

Related Classes of jimmm.data.Player

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.