mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 18:07:25 +08:00
c320b6110c
- Fix wrong inheritance in ArchiveModelManager - Add license headers
15 lines
344 B
C#
15 lines
344 B
C#
// 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.
|
|
|
|
using System;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
public interface IModelManager<TModel>
|
|
{
|
|
event Action<TModel, bool> ItemAdded;
|
|
|
|
event Action<TModel> ItemRemoved;
|
|
}
|
|
}
|