6
StarHorizon_Public/Content.Shared/_RMC14/Attachable/Components/AttachableGunPreventShootComponent.cs
2026-01-18 12:53:36 +03:00

16 lines
464 B
C#

using Content.Shared._RMC14.Attachable.Systems;
using Robust.Shared.GameStates;
namespace Content.Shared._RMC14.Attachable.Components;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
[Access(typeof(AttachableToggleableSystem))]
public sealed partial class AttachableGunPreventShootComponent : Component
{
[DataField, AutoNetworkedField]
public bool PreventShoot;
[DataField, AutoNetworkedField]
public string Message = "";
}