blob: dc5cac45f8710a2fed4eb2a0daa3dedb0b6a33dc (
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();
public boolean doFastRecipeCheck();
}
|