fish-station/Content.Server/Power/Components/RiggableComponent.cs
Sailor 9d844520be
Implement RiggableSystem, stunbatons injectable (#17288)
Co-authored-by: keronshb <54602815+keronshb@users.noreply.github.com>
2023-07-08 13:32:31 +10:00

11 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;
}