15 lines
326 B
C#
15 lines
326 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Alert;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class AlertsComponentState : ComponentState
|
|
{
|
|
public Dictionary<AlertKey, AlertState> Alerts;
|
|
|
|
public AlertsComponentState(Dictionary<AlertKey, AlertState> alerts)
|
|
{
|
|
Alerts = alerts;
|
|
}
|
|
}
|