2023-06-28 05:48:06 +03:00
|
|
|
namespace Content.Shared.Lube;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class LubedComponent : Component
|
2023-06-28 05:48:06 +03:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reverts name to before prefix event (essentially removes prefix).
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField("beforeLubedEntityName")]
|
|
|
|
|
public string BeforeLubedEntityName = string.Empty;
|
|
|
|
|
|
|
|
|
|
[DataField("slipsLeft"), ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public int SlipsLeft;
|
|
|
|
|
|
|
|
|
|
[DataField("slipStrength"), ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public int SlipStrength;
|
|
|
|
|
}
|