diff --git a/src/main/java/com/github/steveice10/packetlib/io/stream/StreamNetInput.java b/src/main/java/com/github/steveice10/packetlib/io/stream/StreamNetInput.java index 197f913a..957f9e1f 100644 --- a/src/main/java/com/github/steveice10/packetlib/io/stream/StreamNetInput.java +++ b/src/main/java/com/github/steveice10/packetlib/io/stream/StreamNetInput.java @@ -261,4 +261,16 @@ public class StreamNetInput implements NetInput { public int available() throws IOException { return this.in.available(); } + + public void mark(int readLimit) { + this.in.mark(readLimit); + } + + public boolean markSupported() { + return this.in.markSupported(); + } + + public long skip(long n) throws IOException { + return this.in.skip(n); + } }