aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java
blob: 951dea4abf4e795f6b0b607c1307998786e8a6ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package gregtech.common.tileentities.machines;

public interface ISmartInputHatch {

    /*
     * An interface to allow advanced interaction between hatches and a multiblock controller
     * Adapted from the Crafting Input Buffer functionality
     */

    // Have the contents of the hatch changed since the last check?
    boolean justUpdated();

}