Examples of RedNetChange


Examples of erogenousbeef.bigreactors.net.helpers.RedNetChange

    List<RedNetChange> packetData = new LinkedList<RedNetChange>();

    for(int i = 0; i < TileEntityReactorRedNetPort.numChannels; i++) {
      if(hasSettingChanged(i)) {
        CircuitType circuitType = grabTargets[i].getCircuitType();
        RedNetChange change = new RedNetChange(i, circuitType, pulseActivated[i], subSettingCoords[i]);
        packetData.add(change);
      }
    }
   
    if(packetData.size() < 1) { return null; }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.