diff options
| author | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2022-01-01 22:11:34 +0700 |
|---|---|---|
| committer | Wyvest <45589059+Wyvest@users.noreply.github.com> | 2022-01-01 22:11:34 +0700 |
| commit | cc4a11c7943d9036dc71679eaa531832cd2a2f0c (patch) | |
| tree | da242580d43fa6f26f0b0b04deab82c200a5bb16 /src/main/java/com/raeids/stratus/hook | |
| parent | 856df4d08d3c392b35f256966f6263da86fdb7ab (diff) | |
| download | Chatting-cc4a11c7943d9036dc71679eaa531832cd2a2f0c.tar.gz Chatting-cc4a11c7943d9036dc71679eaa531832cd2a2f0c.tar.bz2 Chatting-cc4a11c7943d9036dc71679eaa531832cd2a2f0c.zip | |
Chattils 1.0.0
Diffstat (limited to 'src/main/java/com/raeids/stratus/hook')
| -rw-r--r-- | src/main/java/com/raeids/stratus/hook/GuiNewChatHook.java | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/main/java/com/raeids/stratus/hook/GuiNewChatHook.java b/src/main/java/com/raeids/stratus/hook/GuiNewChatHook.java deleted file mode 100644 index 67552c4..0000000 --- a/src/main/java/com/raeids/stratus/hook/GuiNewChatHook.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.raeids.stratus.hook; - -import net.minecraft.client.gui.ChatLine; - -import java.awt.datatransfer.Transferable; - -public interface GuiNewChatHook { - int getRight(); - - boolean shouldCopy(); - - Transferable getStratusChatComponent(int mouseY); - - default ChatLine getFullMessage(ChatLine line) { - throw new AssertionError("getFullMessage not overridden on GuiNewChat"); - } - - String getPrevText(); - - void setPrevText(String prevText); - - int getTextOpacity(); -} |
