diff options
Diffstat (limited to 'src/main/java/org/polyfrost/chatting/hook')
-rw-r--r-- | src/main/java/org/polyfrost/chatting/hook/ChatLineHook.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/org/polyfrost/chatting/hook/ChatLineHook.java b/src/main/java/org/polyfrost/chatting/hook/ChatLineHook.java index 22f180c..5e5b37a 100644 --- a/src/main/java/org/polyfrost/chatting/hook/ChatLineHook.java +++ b/src/main/java/org/polyfrost/chatting/hook/ChatLineHook.java @@ -5,11 +5,15 @@ import net.minecraft.client.network.NetworkPlayerInfo; import java.lang.ref.WeakReference; import java.util.HashSet; +import java.util.List; public interface ChatLineHook { HashSet<WeakReference<ChatLine>> chatLines = new HashSet<>(); boolean isDetected(); void setDetected(boolean detected); + List<ChatLine> getChildren(); + long getTimestamp(); + void setTimestamp(long timestamp); NetworkPlayerInfo getPlayerInfo(); void setPlayerInfo(NetworkPlayerInfo playerInfo); NetworkPlayerInfo getDetectedPlayerInfo(); |