12 lines
315 B
C#
12 lines
315 B
C#
|
|
using Content.Server.StationEvents.Events;
|
||
|
|
|
||
|
|
namespace Content.Server.StationEvents.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Added to APCs to prevent them from turning on until event end
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, Access(typeof(PowerGridCheckRule))]
|
||
|
|
public sealed class PowerGridCheckDisabledComponent : Component
|
||
|
|
{
|
||
|
|
}
|