namespace Content.Client.Lock.Visualizers;
[RegisterComponent]
[Access(typeof(LockVisualizerSystem))]
public sealed partial class LockVisualsComponent : Component
{
///
/// The RSI state used for the lock indicator while the entity is locked.
///
[DataField("stateLocked")]
[ViewVariables(VVAccess.ReadWrite)]
public string? StateLocked = "locked";
///
/// The RSI state used for the lock indicator entity is unlocked.
///
[DataField("stateUnlocked")]
[ViewVariables(VVAccess.ReadWrite)]
public string? StateUnlocked = "unlocked";
}