Files
tbd-station-14/Content.Server/Paper/PaperComponent.cs
vanx f7d2da0fe0 Doubled the papers symbol limit (#13311)
Co-authored-by: vanx <vanx#5477>
2023-01-03 22:44:17 -08:00

25 lines
718 B
C#

using Content.Shared.Paper;
using Robust.Shared.GameStates;
namespace Content.Server.Paper
{
[NetworkedComponent, RegisterComponent]
public sealed class PaperComponent : SharedPaperComponent
{
public PaperAction Mode;
[DataField("content")]
public string Content { get; set; } = "";
[DataField("contentSize")]
public int ContentSize { get; set; } = 1000;
[DataField("stampedBy")]
public List<string> StampedBy { get; set; } = new();
/// <summary>
/// Stamp to be displayed on the paper, state from beauracracy.rsi
/// </summary>
[DataField("stampState")]
public string? StampState { get; set; }
}
}