mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
20 lines
547 B
C#
20 lines
547 B
C#
using Content.Shared.Whitelist;
|
|
|
|
namespace Content.Server.Labels.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class HandLabelerComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("assignedLabel")]
|
|
public string AssignedLabel { get; set; } = string.Empty;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
[DataField("maxLabelChars")]
|
|
public int MaxLabelChars { get; set; } = 50;
|
|
|
|
[DataField("whitelist")]
|
|
public EntityWhitelist Whitelist = new();
|
|
}
|
|
}
|