Package com.bergerkiller.bukkit.common

Examples of com.bergerkiller.bukkit.common.BlockLocation


*/
public class BlockSet extends HashSet<BlockLocation> {
  private static final long serialVersionUID = 1L;

  public boolean contains(Block block) {
    return super.contains(new BlockLocation(block));
  }
View Full Code Here


  public boolean contains(final String world, IntVector3 coord) {
    return this.contains(world, coord.x, coord.y, coord.z);
  }

  public boolean contains(final String world, final int x, final int y, final int z) {
    return super.contains(new BlockLocation(world, x, y, z));
  }
View Full Code Here

  public boolean contains(final String world, final int x, final int y, final int z) {
    return super.contains(new BlockLocation(world, x, y, z));
  }

  public boolean remove(Block block) {
    return super.remove(new BlockLocation(block));
  }
View Full Code Here

TOP

Related Classes of com.bergerkiller.bukkit.common.BlockLocation

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.