aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities/machines/ISmartInputHatch.java
blob: bbf6c5b631030663e48b63a8fa7891468e73690a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();

    boolean doFastRecipeCheck();

}