mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-27 18:38:14 -05:00
Update #37 - Touch support without userscript, many other feats
This commit is contained in:
@ -74,6 +74,11 @@ public class EaglerOutputStream extends OutputStream {
|
||||
return count;
|
||||
}
|
||||
|
||||
public void skipBytes(int num) {
|
||||
ensureCapacity(count + num);
|
||||
count += num;
|
||||
}
|
||||
|
||||
public void close() throws IOException {
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user