Package org.spout.api.component.block

Examples of org.spout.api.component.block.BlockComponent.onInteract()


    }
    super.onInteract(entity, block, type, clickedFace);
    for (Class<? extends BlockComponent> c : getComponents()) {
      BlockComponent get = block.get(c);
      if (get != null) {
        get.onInteract(event);
      }
    }
  }
}
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.