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

change accessor from internal readonly to public get-only

Also changes the class accessor from internal to public
This commit is contained in:
Shivam 2020-06-24 00:06:27 +02:00
parent 0ca8c961c8
commit e5851be9ad
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace osu.Game.Tournament.IO
public class TournamentStorage : MigratableStorage public class TournamentStorage : MigratableStorage
{ {
private readonly Storage storage; private readonly Storage storage;
internal readonly TournamentVideoResourceStore VideoStore; public TournamentVideoResourceStore VideoStore { get; }
private const string default_tournament = "default"; private const string default_tournament = "default";
public TournamentStorage(Storage storage) public TournamentStorage(Storage storage)

View File

@ -6,7 +6,7 @@ using osu.Framework.Platform;
namespace osu.Game.Tournament.IO namespace osu.Game.Tournament.IO
{ {
internal class TournamentVideoResourceStore : NamespacedResourceStore<byte[]> public class TournamentVideoResourceStore : NamespacedResourceStore<byte[]>
{ {
public TournamentVideoResourceStore(Storage storage) public TournamentVideoResourceStore(Storage storage)
: base(new StorageBackedResourceStore(storage), "videos") : base(new StorageBackedResourceStore(storage), "videos")