12 lines
271 B
C#
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;
|
|
}
|