18 lines
407 B
C#
18 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Robust.Shared.GameObjects;
|
|
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;
|
|
}
|
|
}
|