DeviceNetworkRequiresPowerComponent.cs 391 B

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