17 lines
434 B
C#
17 lines
434 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Alert;
|
|
|
|
/// <summary>
|
|
/// Handles the icons on the right side of the screen.
|
|
/// Should only be used for player-controlled entities.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[NetworkedComponent]
|
|
public sealed class AlertsComponent : Component
|
|
{
|
|
[ViewVariables] public Dictionary<AlertKey, AlertState> Alerts = new();
|
|
|
|
public override bool SendOnlyToOwner => true;
|
|
}
|