Package net.mcft.copy.betterstorage.api

Examples of net.mcft.copy.betterstorage.api.ICrateStorage


  @Override
  public void invalidate() {
    super.invalidate();
    for( int i = 0; i < adjacentCrates.length; i++ ) {
      ICrateStorage crate = adjacentCrates[i];
      if( crate != null ) {
        crate.unregisterCrateWatcher( this );
        adjacentCrates[i] = null;
      }
    }
    fireUnloadEventAE();
  }
View Full Code Here

TOP

Related Classes of net.mcft.copy.betterstorage.api.ICrateStorage

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.