Package zelda.items

Examples of zelda.items.GuiHeart


    YSen = game.getHeight() / 2;
   
    sprite.setSprite(new Rectangle(0, 0, game.getWidth(), game.getHeight()));

    GuiHeart.clear();
        GuiHeart heart;

        for(int i = 0; i < 5; i++) //draw live bar hearts
        {
            heart = new GuiHeart(game, (game.getWidth() - 130)+i*12 , 50);
            gameObjects.add(heart);
        }
        
        GuiRupee rupee = new GuiRupee(game, 100, game.getHeight() / 11); // draw rupee amount
        gameObjects.add(rupee);
View Full Code Here

TOP

Related Classes of zelda.items.GuiHeart

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.