Files
tbd-station-14/Content.Shared/Paper/StampComponent.cs
Fishfish458 ddf2d8815b Minor paper ECS and stamps (#7394)
Co-authored-by: fishfish458 <fishfish458>
2022-04-08 16:37:22 -07:00

20 lines
666 B
C#

namespace Content.Shared.Paper
{
[RegisterComponent]
public class StampComponent : Component
{
/// <summary>
/// The loc string name that will be stamped to the piece of paper on examine.
/// </summary>
[ViewVariables]
[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>
[ViewVariables]
[DataField("stampState")]
public string StampState { get; set; } = "paper_stamp-generic";
}
}