mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-24 09:08:04 +03:00
Implement SpeechWireAction (cherry picked from commit b8de514237c996e85e0c64e8e69edbfe79565683)
10 lines
160 B
C#
10 lines
160 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Speech;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum SpeechWireActionKey : byte
|
|
{
|
|
StatusKey,
|
|
}
|