1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-25 23:30:51 +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
Unverified
parent 0ca8c961c8
commit e5851be9ad
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ namespace osu.Game.Tournament.IO
public class TournamentStorage : MigratableStorage
{
private readonly Storage storage;
internal readonly TournamentVideoResourceStore VideoStore;
public TournamentVideoResourceStore VideoStore { get; }
private const string default_tournament = "default";
public TournamentStorage(Storage storage)
@@ -6,7 +6,7 @@ using osu.Framework.Platform;
namespace osu.Game.Tournament.IO
{
internal class TournamentVideoResourceStore : NamespacedResourceStore<byte[]>
public class TournamentVideoResourceStore : NamespacedResourceStore<byte[]>
{
public TournamentVideoResourceStore(Storage storage)
: base(new StorageBackedResourceStore(storage), "videos")