using Robust.Shared.Serialization;
namespace Content.Shared.TextScreen;
[Serializable, NetSerializable]
public enum TextScreenVisuals : byte
{
///
/// Should this show any text?
/// Expects a .
///
On,
///
/// Is this a timer or a text-screen?
/// Expects a .
///
Mode,
///
/// What text to show?
/// Expects a .
///
ScreenText,
///
/// What is the target time?
/// Expects a .
///
TargetTime
}
[Serializable, NetSerializable]
public enum TextScreenMode : byte
{
Text,
Timer
}