Added RemoteStorage.OpenSharedFile(sharingId)

This commit is contained in:
James King 2017-07-07 15:43:12 +01:00
parent d129f3757a
commit 598f44e9f8

View File

@ -90,6 +90,15 @@ namespace Facepunch.Steamworks
return existing;
}
/// <summary>
/// Opens a previously shared <see cref="RemoteFile"/>
/// with the given <paramref name="sharingId"/>.
/// </summary>
public RemoteFile OpenSharedFile( ulong sharingId )
{
return new RemoteFile( this, sharingId );
}
/// <summary>
/// Write all text to the file at the specified path. This
/// overwrites the contents - it does not append.