Package org.spout.api.component.block

Examples of org.spout.api.component.block.BlockComponent


    if (Spout.getEventManager().callEvent(event).isCancelled()) {
      return;
    }
    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

Related Classes of org.spout.api.component.block.BlockComponent

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.