Package zelda.items

Examples of zelda.items.Heart


        if (r < 50)
        {
            if (r < 25)
            {
                game.getScene().addNewGObject(new Heart (game, x, y));
            }
            else
            {
                game.getScene().addNewGObject(new Rupee (game, x, y));
            }
View Full Code Here


        gameObjects.add(new Rupee(game, 131, 96));
        gameObjects.add(new Rupee(game, 148, 96));
        gameObjects.add(new Rupee(game, 196, 577));
        gameObjects.add(new Rupee(game, 1092, 857));
        gameObjects.add(new Rupee(game, 1036, 425));
        gameObjects.add(new Heart(game, 812, 57));
        gameObjects.add(new Heart(game, 52, 577));

        gameObjects.add(game.getLink());

        gameObjects.add(new Guard(game, 118, 971, Direction.UP));
        gameObjects.add(new Guard(game, 885, 968, Direction.UP));
View Full Code Here

TOP

Related Classes of zelda.items.Heart

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.