mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-15 03:31:38 +01:00
15 lines
375 B
C#
15 lines
375 B
C#
namespace Content.Shared.Alert
|
|
{
|
|
/// <summary>
|
|
/// Defines what should happen when an alert is clicked.
|
|
/// </summary>
|
|
public interface IAlertClick
|
|
{
|
|
/// <summary>
|
|
/// Invoked on server side when user clicks an alert.
|
|
/// </summary>
|
|
/// <param name="player"></param>
|
|
void AlertClicked(EntityUid player);
|
|
}
|
|
}
|