Files
tbd-station-14/Content.Shared/TextScreen/TextScreenVisuals.cs
avery 7e16ee0b55 Hallway textscreens (#24189)
* hallway screen refactor pending comms console support

* comms console broadcasts

* screen and timer localization
2024-01-27 08:51:24 -05:00

32 lines
831 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.TextScreen;
[Serializable, NetSerializable]
public enum TextScreenVisuals : byte
{
// TODO: support for a small image, I think. Probably want to rename textscreen to just screen then.
/// <summary>
/// What text to default to after timer completion?
/// Expects a <see cref="string"/>.
/// </summary>
DefaultText,
/// <summary>
/// What text to render? <br/>
/// Expects a <see cref="string"/>.
/// </summary>
ScreenText,
/// <summary>
/// What is the target time? <br/>
/// Expects a <see cref="TimeSpan"/>.
/// </summary>
TargetTime,
/// <summary>
/// Change text color on the entire screen
/// Expects a <see cref="Color"/>.
/// </summary>
Color
}