Files
crystall-punk-14/Content.Shared/Alert/AlertsComponent.cs

18 lines
504 B
C#
Raw Permalink Normal View History

2022-01-05 00:19:23 -08:00
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, AutoGenerateComponentState(true)]
public sealed partial class AlertsComponent : Component
2022-01-05 00:19:23 -08:00
{
[ViewVariables]
[AutoNetworkedField]
public Dictionary<AlertKey, AlertState> Alerts = new();
public override bool SendOnlyToOwner => true;
2022-01-05 00:19:23 -08:00
}