mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
* crystal anomaly
* Good intercoms
* fixes
* fix construction fail
* Revert "crystal anomaly"
This reverts commit 0d9e3f62ff.
* migration
18 lines
286 B
C#
18 lines
286 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Radio;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum RadioDeviceVisuals : byte
|
|
{
|
|
Broadcasting,
|
|
Speaker
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum RadioDeviceVisualLayers : byte
|
|
{
|
|
Broadcasting,
|
|
Speaker
|
|
}
|