aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IGTEnet.java
blob: 77b894fea706836c17ef97b7980ab5d7a46e9d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package gregtech.api.interfaces.tileentity;

public interface IGTEnet {

    /**
     * @return true if this Device consumes Energy at all
     */
    default boolean isEnetInput() {
        return false;
    }

    /**
     *
     * @return true if this Device emits Energy at all
     */
    default boolean isEnetOutput() {
        return false;
    }
}