static public SyncListUInt ReadInstance(NetworkReader reader) { ushort count = reader.ReadUInt16(); var result = new SyncListUInt(); for (ushort i = 0; i < count; i++) { result.AddInternal(reader.ReadPackedUInt32()); } return(result); }