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