Files
tbd-station-14/Content.Shared/Paper/StampComponent.cs

18 lines
625 B
C#

namespace Content.Shared.Paper
{
[RegisterComponent]
public sealed class StampComponent : Component
{
/// <summary>
/// The loc string name that will be stamped to the piece of paper on examine.
/// </summary>
[DataField("stampedName")]
public string StampedName { get; set; } = "stamp-component-stamped-name-default";
/// <summary>
/// Tne sprite state of the stamp to display on the paper from bureacracy.rsi.
/// </summary>
[DataField("stampState")]
public string StampState { get; set; } = "paper_stamp-generic";
}
}