Files
tbd-station-14/Content.Shared/Radio/Components/ActiveRadioJammerComponent.cs
Tayrtahn e33f0341ad Code cleanup: radio jammer (#29052)
* Code cleanup for radio jammer

* More Entity<T> for the people, and fix an accidental variable reuse
2024-06-20 01:13:40 +10:00

14 lines
350 B
C#

using Content.Shared.Radio.EntitySystems;
using Robust.Shared.GameStates;
namespace Content.Shared.Radio.Components;
/// <summary>
/// Prevents all radio in range from sending messages
/// </summary>
[RegisterComponent, NetworkedComponent]
[Access(typeof(SharedJammerSystem))]
public sealed partial class ActiveRadioJammerComponent : Component
{
}