aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/graphs/PowerNode.java
blob: a92e3ea0ca4340a520c7742e5e4a30fe17834a46 (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 net.minecraft.tileentity.TileEntity;

import java.util.ArrayList;

//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);
    }
}