2019-06-11 18:17:05 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
2019-06-11 17:12:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
2019-06-12 13:05:34 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a model manager that publishes events when <see cref="TModel"/>s are added or removed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="TModel">The model type.</typeparam>
|
2019-06-11 17:12:57 +00:00
|
|
|
|
public interface IModelManager<TModel>
|
2019-06-12 13:05:34 +00:00
|
|
|
|
where TModel : class
|
2019-06-11 17:12:57 +00:00
|
|
|
|
{
|
|
|
|
|
event Action<TModel, bool> ItemAdded;
|
|
|
|
|
|
|
|
|
|
event Action<TModel> ItemRemoved;
|
|
|
|
|
}
|
|
|
|
|
}
|