aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IIC2Enet.java
blob: 2593f1f3b59c47952ce3329492c7df7ede5d2629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package gregtech.api.interfaces.tileentity;

/**
 * IC2 Energy Compat
 */
public interface IIC2Enet {
    /**
     * Should this tile/block join the ic2 enet
     */
    boolean shouldJoinIc2Enet();

    /**
     * Update the ic2 enet
     */
    void doEnetUpdate();
}