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

import java.util.ArrayList;

import net.minecraft.tileentity.TileEntity;

import gregtech.api.graphs.consumers.ConsumerNode;

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