User IEnumerable for HandledExtensions

This commit is contained in:
Dean Herbert
2020-10-02 16:17:10 +09:00
parent f3c8cd91f4
commit 50eca202f4
6 changed files with 7 additions and 6 deletions

View File

@ -70,7 +70,7 @@ namespace osu.Game.Database
private readonly Bindable<WeakReference<TModel>> itemRemoved = new Bindable<WeakReference<TModel>>();
public virtual string[] HandledExtensions => new[] { ".zip" };
public virtual IEnumerable<string> HandledExtensions => new[] { ".zip" };
public virtual bool SupportsImportFromStable => RuntimeInfo.IsDesktop;