Files
OldThink/Content.Server/DeviceNetwork/Components/WirelessNetworkComponent.cs

14 lines
458 B
C#
Raw Permalink Normal View History

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]
2022-02-01 19:35:40 -08:00
[ComponentProtoName("WirelessNetworkConnection")]
public sealed partial class WirelessNetworkComponent : Component
{
[DataField("range")]
public int Range { get; set; }
}
}