2023-07-08 06:32:31 +03:00
|
|
|
namespace Content.Server.Power.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class RiggableComponent : Component
|
2023-07-08 06:32:31 +03:00
|
|
|
{
|
|
|
|
|
public const string SolutionName = "battery";
|
|
|
|
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
[DataField("isRigged")]
|
|
|
|
|
public bool IsRigged;
|
|
|
|
|
}
|