From 487709996c22fb0dbcac792076be799a09865600 Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Mon, 3 Jan 2022 11:12:54 +0700 Subject: Chattils -> Chatting (1.1.0) Update images (ty Mo2men) update screenshot line tooltip (ty Mo2men) --- .../cc/woverflow/chattils/hook/GuiNewChatHook.java | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/main/java/cc/woverflow/chattils/hook/GuiNewChatHook.java (limited to 'src/main/java/cc/woverflow/chattils/hook') diff --git a/src/main/java/cc/woverflow/chattils/hook/GuiNewChatHook.java b/src/main/java/cc/woverflow/chattils/hook/GuiNewChatHook.java deleted file mode 100644 index f84fd43..0000000 --- a/src/main/java/cc/woverflow/chattils/hook/GuiNewChatHook.java +++ /dev/null @@ -1,23 +0,0 @@ -package cc.woverflow.chattils.hook; - -import net.minecraft.client.gui.ChatLine; - -import java.awt.datatransfer.Transferable; - -public interface GuiNewChatHook { - int getRight(); - - boolean shouldCopy(); - - Transferable getChattilsChatComponent(int mouseY); - - default ChatLine getFullMessage(ChatLine line) { - throw new AssertionError("getFullMessage not overridden on GuiNewChat"); - } - - String getPrevText(); - - void setPrevText(String prevText); - - int getTextOpacity(); -} -- cgit