18 lines
398 B
C#
18 lines
398 B
C#
namespace Content.Client.Materials;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class RecyclerVisualsComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Key appended to state string if bloody.
|
|
/// </summary>
|
|
[DataField]
|
|
public string BloodyKey = "bld";
|
|
|
|
/// <summary>
|
|
/// Base key for the visual state.
|
|
/// </summary>
|
|
[DataField]
|
|
public string BaseKey = "grinder-o";
|
|
}
|