Remove existing argument for ItemAdded event

For all usages, it looks like this was unnecessary.
This commit is contained in:
Dean Herbert
2019-06-26 11:40:33 +09:00
parent c476e46a8e
commit 9e1cb90dd8
12 changed files with 42 additions and 65 deletions

View File

@ -12,7 +12,7 @@ namespace osu.Game.Database
public interface IModelManager<out TModel>
where TModel : class
{
event Action<TModel, bool> ItemAdded;
event Action<TModel> ItemAdded;
event Action<TModel> ItemRemoved;
}