Package logisticspipes.interfaces

Examples of logisticspipes.interfaces.IWatchingHandler


    final LogisticsTileGenericPipe pipe = this.getPipe(player.worldObj);
    if(pipe == null) {
      return;
    }
    if(pipe.pipe instanceof IWatchingHandler) {
      IWatchingHandler handler = (IWatchingHandler) pipe.pipe;
      handler.playerStopWatching(player, getInteger());
    }
  }
View Full Code Here


    final LogisticsTileGenericPipe pipe = this.getPipe(player.worldObj);
    if(pipe == null) {
      return;
    }
    if(pipe.pipe instanceof IWatchingHandler) {
      IWatchingHandler handler = (IWatchingHandler) pipe.pipe;
      handler.playerStartWatching(player, getInteger());
    }
  }
View Full Code Here

TOP

Related Classes of logisticspipes.interfaces.IWatchingHandler

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.