6
StarHorizon_Public/Content.Shared/Ghost/GhostRoleRadioEvents.cs
2025-11-15 12:24:44 +03:00

22 lines
455 B
C#

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