1
0

GhostRoleRadioEvents.cs 455 B

123456789101112131415161718192021
  1. using Robust.Shared.Prototypes;
  2. using Robust.Shared.Serialization;
  3. namespace Content.Shared.Ghost.Roles;
  4. [Serializable, NetSerializable]
  5. public sealed class GhostRoleRadioMessage : BoundUserInterfaceMessage
  6. {
  7. public ProtoId<GhostRolePrototype> ProtoId;
  8. public GhostRoleRadioMessage(ProtoId<GhostRolePrototype> protoId)
  9. {
  10. ProtoId = protoId;
  11. }
  12. }
  13. [Serializable, NetSerializable]
  14. public enum GhostRoleRadioUiKey : byte
  15. {
  16. Key
  17. }