Examples of WalkBlocker


Examples of games.stendhal.server.entity.mapstuff.area.WalkBlocker

    chest = new PersonalChest();
    chest.setPosition(4, 2);
    add(chest);

    WalkBlocker walkblocker = new WalkBlocker();
    walkblocker.setPosition(2, 5);
    walkblocker
        .setDescription("You see a wastebin, handily placed for items you wish to dispose of.");
    add(walkblocker);
    // Add a sign explaining about equipped items
    final Sign book = new Sign();
    book.setPosition(2, 2);
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.