mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-02-23 13:10:04 +07:00
Fixed compatibility with ByteOutput
This commit is contained in:
parent
1215ff3358
commit
2ace310ca3
@ -1,10 +1,10 @@
|
||||
package com.riiablo.table;
|
||||
|
||||
public interface DataOutput {
|
||||
void write8(int value);
|
||||
void write16(int value);
|
||||
void write32(int value);
|
||||
void write64(long value);
|
||||
void writeBoolean(boolean value);
|
||||
void writeString(CharSequence chars);
|
||||
DataOutput write8(int value);
|
||||
DataOutput write16(int value);
|
||||
DataOutput write32(int value);
|
||||
DataOutput write64(long value);
|
||||
DataOutput writeBoolean(boolean value);
|
||||
DataOutput writeString(CharSequence chars);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user