aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/graphs/PowerNode.java
blob: c81d4368610fc3d07a2a32b2444004e86bc26504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package gregtech.api.graphs;

import gregtech.api.graphs.consumers.ConsumerNode;
import java.util.ArrayList;
import net.minecraft.tileentity.TileEntity;

// base node for power networks
public class PowerNode extends Node {
    public boolean mHadVoltage = false;

    public PowerNode(int aNodeValue, TileEntity aTileEntity, ArrayList<ConsumerNode> aConsumers) {
        super(aNodeValue, aTileEntity, aConsumers);
    }
}