All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.inventory.meta.MapMeta Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package org.bukkit.inventory.meta;

/**
 * Represents a map that can be scalable.
 */
public interface MapMeta extends ItemMeta {

  /**
   * Checks to see if this map is scaling.
   *
   * @return true if this map is scaling
   */
  boolean isScaling();

  /**
   * Sets if this map is scaling or not.
   *
   * @param value true to scale
   */
  void setScaling(boolean value);

  MapMeta clone();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy