client: object composition directional access bitmask

This commit is contained in:
tomcylke
2021-09-09 14:08:10 -04:00
parent df0b7d9404
commit 0cb2dea4d9
10 changed files with 470 additions and 39 deletions

View File

@@ -11,6 +11,9 @@ public interface RSBuffer extends Buffer, RSNode
@Import("offset")
int getOffset();
@Import("offset")
void setOffset(int offset);
@Import("writeByte")
@Override
void writeByte(int var1);
@@ -34,4 +37,22 @@ public interface RSBuffer extends Buffer, RSNode
@Import("writeStringCp1252NullTerminated")
@Override
void writeStringCp1252NullTerminated(String string);
@Import("readUnsignedByte")
int readUnsignedByte();
@Import("readByte")
byte readByte();
@Import("readUnsignedShort")
int readUnsignedShort();
@Import("readShort")
int readShort();
@Import("readInt")
int readInt();
@Import("readStringCp1252NullTerminated")
String readStringCp1252NullTerminated();
}