aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IGTEnet.java
blob: cd4810eba641db0e6a33597960f4fb460d850933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
    }

}