2021-09-30 16:42:12 +08: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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-09-30 16:42:12 +08:00
|
|
|
using System;
|
|
|
|
using osu.Game.Overlays.Notifications;
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
{
|
|
|
|
public interface IPostNotifications
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// And action which will be fired when a notification should be presented to the user.
|
|
|
|
/// </summary>
|
|
|
|
public Action<Notification> PostNotification { set; }
|
|
|
|
}
|
|
|
|
}
|