Implement RiggableSystem, stunbatons injectable (#17288)

Co-authored-by: keronshb <54602815+keronshb@users.noreply.github.com>
This commit is contained in:
Sailor
2023-07-08 06:32:31 +03:00
committed by GitHub
parent 1289b2dc21
commit 9d844520be
8 changed files with 135 additions and 55 deletions

View File

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