2022-01-05 00:19:23 -08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Alert;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class AlertsComponentState : ComponentState
|
2022-01-05 00:19:23 -08:00
|
|
|
{
|
|
|
|
|
public Dictionary<AlertKey, AlertState> Alerts;
|
|
|
|
|
|
|
|
|
|
public AlertsComponentState(Dictionary<AlertKey, AlertState> alerts)
|
|
|
|
|
{
|
|
|
|
|
Alerts = alerts;
|
|
|
|
|
}
|
2022-02-16 00:23:23 -07:00
|
|
|
}
|