1
0

WirelessNetworkComponent.cs 458 B

12345678910111213
  1. namespace Content.Server.DeviceNetwork.Components
  2. {
  3. /// <summary>
  4. /// Sends and receives device network messages wirelessly. Devices sending and receiving need to be in range and on the same frequency.
  5. /// </summary>
  6. [RegisterComponent]
  7. [ComponentProtoName("WirelessNetworkConnection")]
  8. public sealed partial class WirelessNetworkComponent : Component
  9. {
  10. [DataField("range")]
  11. public int Range { get; set; }
  12. }
  13. }