using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
namespace Content.Client.TextScreen;
///
/// Added to an entity already containing a to track frame-by-frame timer updates
///
[RegisterComponent]
public sealed partial class TextScreenTimerComponent : Component
{
[DataField("targetTime", customTypeSerializer: typeof(TimeOffsetSerializer))]
public TimeSpan Target = TimeSpan.Zero;
public Dictionary LayerStatesToDraw = new();
}