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