mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-12 08:41:00 -05:00
Add reset method to StreamNetInput
This commit is contained in:
parent
3c5b1f4792
commit
f2adf41dd2
1 changed files with 4 additions and 0 deletions
|
@ -270,6 +270,10 @@ public class StreamNetInput implements NetInput {
|
|||
return this.in.markSupported();
|
||||
}
|
||||
|
||||
public void reset() throws IOException {
|
||||
this.in.reset();
|
||||
}
|
||||
|
||||
public long skip(long n) throws IOException {
|
||||
return this.in.skip(n);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue