using System; namespace osu.Game.Database { public interface IModelManager { /// /// Fired when a new becomes available in the database. /// This is not guaranteed to run on the update thread. /// event Action ItemAdded; /// /// Fired when a is removed from the database. /// This is not guaranteed to run on the update thread. /// event Action ItemRemoved; } }