Package org.spoutcraft.client.gui.minimap

Examples of org.spoutcraft.client.gui.minimap.Waypoint


  public void run(int playerId) {
    if (!death) {
      MinimapConfig.getInstance().addServerWaypoint(x, y, z, name);
    } else {
      Waypoint point = new Waypoint("Death " + new SimpleDateFormat("dd-MM-yyyy").format(new Date()), (int)x, (int)y, (int)z, true);
      point.deathpoint = true;
      MinimapConfig.getInstance().addWaypoint(point);
    }
  }
View Full Code Here

TOP

Related Classes of org.spoutcraft.client.gui.minimap.Waypoint

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.