Package game.view.inventory

Examples of game.view.inventory.InventoryScreen


        setBackground(Color.BLACK);
        this.gameModel = gameModel;
        gameModel.addObserver(this);
        this.setOpaque(false);

        inventoryScreen = new InventoryScreen(gameModel.getPlayer().getInventory());

        requestFocus();
        repaint();
    }
View Full Code Here

TOP

Related Classes of game.view.inventory.InventoryScreen

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.