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

18 lines
485 B
C#
Raw Normal View History

2022-01-05 00:19:23 -08:00
using System.Collections.Generic;
using Robust.Shared.GameObjects;
using Robust.Shared.GameStates;
using Robust.Shared.ViewVariables;
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
2022-01-05 00:19:23 -08:00
{
[ViewVariables] public Dictionary<AlertKey, AlertState> Alerts = new();
}