2022-09-19 16:59:32 -07:00
|
|
|
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]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class DeviceNetworkRequiresPowerComponent : Component
|
2022-09-19 16:59:32 -07:00
|
|
|
{
|
|
|
|
|
}
|