Package com.jcloisterzone.board

Examples of com.jcloisterzone.board.TilePack.totalSize()


        TilePack tilePack = game.getTilePack();
        if (tilePack != null) { //null is possible for just loaded game
            g2.setFont(FONT_PACK_SIZE);
            g2.setColor(HEADER_FONT_COLOR);
            int packSize = tilePack.totalSize();
            g2.drawString("" + packSize, PANEL_WIDTH - 42, 24);
        }

        g2.translate(0, 46);
        actionPanel.paintComponent(g2);
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.