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>
|
2019-11-17 12:48:23 +00:00
|
|
|
|
/// Represents a model manager that publishes events when <typeparamref name="TModel"/>s are added or removed.
|
2019-06-12 13:05:34 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="TModel">The model type.</typeparam>
|
2019-06-18 16:57:38 +00:00
|
|
|
|
public interface IModelManager<out TModel>
|
2019-06-12 13:05:34 +00:00
|
|
|
|
where TModel : class
|
2019-06-11 17:12:57 +00:00
|
|
|
|
{
|
2019-06-26 02:40:33 +00:00
|
|
|
|
event Action<TModel> ItemAdded;
|
2019-06-11 17:12:57 +00:00
|
|
|
|
|
|
|
|
|
event Action<TModel> ItemRemoved;
|
|
|
|
|
}
|
|
|
|
|
}
|