Files
tbd-station-14/Content.Server/Power/Components/RiggableComponent.cs

12 lines
271 B
C#

namespace Content.Server.Power.Components;
[RegisterComponent]
public sealed partial class RiggableComponent : Component
{
public const string SolutionName = "battery";
[ViewVariables(VVAccess.ReadWrite)]
[DataField("isRigged")]
public bool IsRigged;
}