Introduce new storage class and manager

This commit is contained in:
Shivam
2020-06-08 00:46:40 +02:00
parent 73467410ab
commit 17cd9569ed
4 changed files with 70 additions and 10 deletions

View File

@ -27,9 +27,9 @@ namespace osu.Game.Tournament.Components
}
[BackgroundDependencyLoader]
private void load(TournamentStorage storage)
private void load(NewTournamentStorage storage)
{
var stream = storage.GetStream($@"videos/{filename}");
var stream = storage.VideoStorage.GetStream($@"{filename}");
if (stream != null)
{