mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +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:
parent
0ca8c961c8
commit
e5851be9ad
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user