// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; namespace osu.Game.Database { /// /// Represents a model manager that publishes events when s are added or removed. /// /// The model type. public interface IModelManager where TModel : class { event Action ItemAdded; event Action ItemRemoved; } }