blob: b26c7035c76be61852e7d6419fa52a110706a1f4 (
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;
import javax.annotation.Nullable;
import net.minecraft.tileentity.TileEntity;
import gregtech.common.Pollution;
/**
* Implement this interface for TileEntities that can have association to cleanroom.
* Calling {@link Pollution#addPollution(TileEntity, int)} from this machine
* will pollute associated cleanroom.
*/
public interface ICleanroomReceiver {
@Nullable
ICleanroom getCleanroom();
void setCleanroom(ICleanroom cleanroom);
}
|