18 lines
293 B
C#
18 lines
293 B
C#
|
|
using System;
|
|||
|
|
using Robust.Shared.Serialization;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.MachineLinking
|
|||
|
|
{
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum SignalTransmitterUiKey
|
|||
|
|
{
|
|||
|
|
Key
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[Serializable, NetSerializable]
|
|||
|
|
public enum SignalReceiverUiKey
|
|||
|
|
{
|
|||
|
|
Key
|
|||
|
|
}
|
|||
|
|
}
|