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

12 lines
263 B
C#

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