16 lines
260 B
C#
16 lines
260 B
C#
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Radio;
|
|||
|
|
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum RadioDeviceVisuals : byte
|
|||
|
|
{
|
|||
|
|
Broadcasting
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum RadioDeviceVisualLayers : byte
|
|||
|
|
{
|
|||
|
|
Broadcasting
|
|||
|
|
}
|