Package appeng.crafting

Examples of appeng.crafting.CraftingWatcher


  public void addNode(IGridNode gridNode, IGridHost machine)
  {
    if ( machine instanceof ICraftingWatcherHost )
    {
      ICraftingWatcherHost watcherHost = (ICraftingWatcherHost) machine;
      CraftingWatcher watcher = new CraftingWatcher( this, watcherHost );
      craftingWatchers.put( gridNode, watcher );
      watcherHost.updateWatcher( watcher );
    }

    if ( machine instanceof ICraftingRequester )
View Full Code Here

TOP

Related Classes of appeng.crafting.CraftingWatcher

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.