6
2026-01-18 12:53:36 +03:00

14 lines
458 B
C#

namespace Content.Server.DeviceNetwork.Components
{
/// <summary>
/// Sends and receives device network messages wirelessly. Devices sending and receiving need to be in range and on the same frequency.
/// </summary>
[RegisterComponent]
[ComponentProtoName("WirelessNetworkConnection")]
public sealed partial class WirelessNetworkComponent : Component
{
[DataField("range")]
public int Range { get; set; }
}
}