Skip to content

Commit a94acfe

Browse files
committed
Made ReadULong public
1 parent a588584 commit a94acfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MLAPI/NetworkingManagerComponents/Binary/BitReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public byte ReadByte()
5454
public long[] ReadLongArray(int known = -1) => ReadArray(ReadLong, known);
5555
public string ReadString() => Encoding.UTF8.GetString(ReadByteArray());
5656

57-
private ulong ReadULong()
57+
public ulong ReadULong()
5858
{
5959
ulong header = ReadByte();
6060
if (header <= 240) return header;

0 commit comments

Comments
 (0)