1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 08:43:01 +08:00

Remove public setter of RealmFileStore.Storage

This commit is contained in:
Dean Herbert 2021-10-12 15:46:32 +09:00
parent 129416835f
commit ce128476ae

View File

@ -17,14 +17,15 @@ using Realms;
namespace osu.Game.Stores
{
/// <summary>
/// Handles the Store and retrieval of Files/FileSets to the database backing
/// Handles the storing of files to the file system (and database) backing.
/// </summary>
public class RealmFileStore
{
private readonly RealmContextFactory realmFactory;
public readonly IResourceStore<byte[]> Store;
public Storage Storage;
public readonly Storage Storage;
public RealmFileStore(RealmContextFactory realmFactory, Storage storage)
{