PacifismAllowedGunComponent.cs 280 B

1234567891011
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.CombatMode.Pacification;
  3. /// <summary>
  4. /// Guns with this component can be fired by pacifists
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class PacifismAllowedGunComponent : Component
  8. {
  9. }