Package crazypants.enderio.machine

Examples of crazypants.enderio.machine.ContinuousTask


    super(new SlotDefinition(8, 8, 0));
    for (ChannelType type : ChannelType.values()) {
      sendChannels.put(type, new ArrayList<Channel>());
      recieveChannels.put(type, new ArrayList<Channel>());
    }
    currentTask = new ContinuousTask(Config.transceiverUpkeepCostRF);
    railController = new EnderRailController(this);
  }
View Full Code Here


  @Override
  public void readCustomNBT(NBTTagCompound nbtRoot) {
    super.readCustomNBT(nbtRoot);
    railController.readFromNBT(nbtRoot);
    currentTask = new ContinuousTask(Config.transceiverUpkeepCostRF);
  }
View Full Code Here

    currentTask = createTask();
   
  }
 
  IPoweredTask createTask() {
    return new ContinuousTask(getPowerUsePerTick());
  }
View Full Code Here

TOP

Related Classes of crazypants.enderio.machine.ContinuousTask

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.