diff options
author | moller21 <42100910+moller21@users.noreply.github.com> | 2020-05-03 23:55:23 +0200 |
---|---|---|
committer | moller21 <42100910+moller21@users.noreply.github.com> | 2020-05-04 20:15:20 +0200 |
commit | b1f29c6c04170c322cc2f7631147a4c8f86160cd (patch) | |
tree | 997691e945186e69a68db33e2226e663233bf06a /src/main/java/gregtech/api/interfaces/tileentity | |
parent | 0d59868a668a62d0d05c3ea6efbbeb3e9fc80c59 (diff) | |
download | GT5-Unofficial-b1f29c6c04170c322cc2f7631147a4c8f86160cd.tar.gz GT5-Unofficial-b1f29c6c04170c322cc2f7631147a4c8f86160cd.tar.bz2 GT5-Unofficial-b1f29c6c04170c322cc2f7631147a4c8f86160cd.zip |
Added cover guis for pump/filter
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/tileentity/ICoverable.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/ICoverable.java b/src/main/java/gregtech/api/interfaces/tileentity/ICoverable.java index 912dc554c0..76d121b8da 100644 --- a/src/main/java/gregtech/api/interfaces/tileentity/ICoverable.java +++ b/src/main/java/gregtech/api/interfaces/tileentity/ICoverable.java @@ -41,4 +41,9 @@ public interface ICoverable extends IRedstoneTileEntity, IHasInventory, IBasicEn * Sends 6 Integers to Client + causes @issueTextureUpdate() */ void issueCoverUpdate(byte aSide); + + /** + * Receiving a packet with cover data. + */ + void receiveCoverData(byte coverSide, int coverID, int coverData); }
\ No newline at end of file |