Minor paper ECS and stamps (#7394)
Co-authored-by: fishfish458 <fishfish458>
This commit is contained in:
19
Content.Shared/Paper/StampComponent.cs
Normal file
19
Content.Shared/Paper/StampComponent.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user