diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2021-05-15 16:27:06 +0800 |
---|---|---|
committer | Glease <4586901+Glease@users.noreply.github.com> | 2021-05-15 17:14:36 +0800 |
commit | 9239ed33b195a59561e9a74bd7063640a97ab514 (patch) | |
tree | 9d250cdd9e2332b280eaab2618c3d01bf778f09a /src/main/java/gregtech/api/interfaces | |
parent | 320520a1593ffbed9b37b74f814e74d4029510a3 (diff) | |
download | GT5-Unofficial-9239ed33b195a59561e9a74bd7063640a97ab514.tar.gz GT5-Unofficial-9239ed33b195a59561e9a74bd7063640a97ab514.tar.bz2 GT5-Unofficial-9239ed33b195a59561e9a74bd7063640a97ab514.zip |
Allow client to proactively request fluid display updates
Currently client will only request update on blocks being looked at.
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/api/interfaces')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/IHasFluidDisplayItem.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/interfaces/IHasFluidDisplayItem.java b/src/main/java/gregtech/api/interfaces/IHasFluidDisplayItem.java new file mode 100644 index 0000000000..dc844b8a85 --- /dev/null +++ b/src/main/java/gregtech/api/interfaces/IHasFluidDisplayItem.java @@ -0,0 +1,5 @@ +package gregtech.api.interfaces; + +public interface IHasFluidDisplayItem { + void updateFluidDisplayItem(); +} |