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