From f701792763abfed441687b27ef91a62ed09abd9d Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 23 Apr 2020 16:49:33 +0800 Subject: Update to 20w17a Signed-off-by: shedaniel --- src/main/java/me/shedaniel/rei/impl/EmptyEntryStack.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/impl/EmptyEntryStack.java') diff --git a/src/main/java/me/shedaniel/rei/impl/EmptyEntryStack.java b/src/main/java/me/shedaniel/rei/impl/EmptyEntryStack.java index f63be6320..cd9ce07aa 100644 --- a/src/main/java/me/shedaniel/rei/impl/EmptyEntryStack.java +++ b/src/main/java/me/shedaniel/rei/impl/EmptyEntryStack.java @@ -27,6 +27,7 @@ import me.shedaniel.math.Point; import me.shedaniel.math.Rectangle; import me.shedaniel.rei.api.EntryStack; import me.shedaniel.rei.api.widgets.Tooltip; +import net.minecraft.client.util.math.MatrixStack; import net.minecraft.util.Identifier; import org.jetbrains.annotations.ApiStatus; import org.jetbrains.annotations.Nullable; @@ -63,7 +64,7 @@ public class EmptyEntryStack implements EntryStack { @Override public void setFloatingAmount(double amount) { - + } @Override @@ -113,7 +114,7 @@ public class EmptyEntryStack implements EntryStack { @Override public void setZ(int z) { - + } @Override @@ -142,8 +143,8 @@ public class EmptyEntryStack implements EntryStack { } @Override - public void render(Rectangle bounds, int mouseX, int mouseY, float delta) { - + public void render(MatrixStack matrices, Rectangle bounds, int mouseX, int mouseY, float delta) { + } @Override -- cgit