Package games.stendhal.server.entity.mapstuff.area

Examples of games.stendhal.server.entity.mapstuff.area.Allotment.hide()


        try {
          final Allotment all = new Allotment();
          all.setPosition(Integer.parseInt(attributes.get("x")), Integer.parseInt(attributes.get("y")));
          all.setSize(Integer.parseInt(attributes.get("width")), Integer.parseInt(attributes.get("height")));
          all.hide();
          zone.add(all);
        } catch (final NumberFormatException e) {
          Logger.getLogger(FertileGrounds.class).error(
              "cannot create allotment in " + zone.getName() + ": " + e);
        }
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.