6
StarHorizon_Public/Content.Server/DeviceNetwork/Components/DeviceNetworkRequiresPowerComponent.cs
2026-01-13 18:31:02 +02:00

12 lines
391 B
C#

namespace Content.Server.DeviceNetwork.Components;
/// <summary>
/// Component that indicates that this device networked entity requires power
/// in order to receive a packet. Having this component will cancel all packet events
/// if the entity is not powered.
/// </summary>
[RegisterComponent]
public sealed partial class DeviceNetworkRequiresPowerComponent : Component
{
}