Package freecell.view

Examples of freecell.view.NewGamePanel


    private boolean winMessageShown;

    public GraphicalApplication(Game game) {
        this.game = game;
        this.gamePanel = new GamePanel(game);
        this.newGamePanel = new NewGamePanel();
        super.setTitle("FreeCell");
        super.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        super.setSize(DIMENSION);
        super.setResizable(false);
        super.setVisible(true);
View Full Code Here

TOP

Related Classes of freecell.view.NewGamePanel

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.