We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a588584 commit a94acfeCopy full SHA for a94acfe
MLAPI/NetworkingManagerComponents/Binary/BitReader.cs
@@ -54,7 +54,7 @@ public byte ReadByte()
54
public long[] ReadLongArray(int known = -1) => ReadArray(ReadLong, known);
55
public string ReadString() => Encoding.UTF8.GetString(ReadByteArray());
56
57
- private ulong ReadULong()
+ public ulong ReadULong()
58
{
59
ulong header = ReadByte();
60
if (header <= 240) return header;
0 commit comments