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

org.bukkit.material.Openable Maven / Gradle / Ivy

package org.bukkit.material;

public interface Openable {

  /**
   * Check to see if the door is open.
   *
   * @return true if the door has swung counterclockwise around its hinge.
   */
  boolean isOpen();

  /**
   * Configure this door to be either open or closed;
   *
   * @param isOpen True to open the door.
   */
  void setOpen(boolean isOpen);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy