using Robust.Shared.Prototypes; using Robust.Shared.Serialization; namespace Content.Shared.Ghost.Roles; [Serializable, NetSerializable] public sealed class GhostRoleRadioMessage : BoundUserInterfaceMessage { public ProtoId ProtoId; public GhostRoleRadioMessage(ProtoId protoId) { ProtoId = protoId; } } [Serializable, NetSerializable] public enum GhostRoleRadioUiKey : byte { Key }