Remove importer inheritance from IModelManager

Now only exists in legacy implementations, to reduce inheritance
complexity of interfaces which are going to be used going forwards.
This commit is contained in:
Dean Herbert
2021-11-05 16:27:13 +09:00
parent 9e06da6cbb
commit b90f44493c
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ namespace osu.Game.Database
/// Represents a model manager that publishes events when <typeparamref name="TModel"/>s are added or removed.
/// </summary>
/// <typeparam name="TModel">The model type.</typeparam>
public interface IModelManager<TModel> : IModelImporter<TModel>
public interface IModelManager<TModel>
where TModel : class
{
/// <summary>