1
0

ResearchConsoleComponent.cs 434 B

123456789101112131415
  1. using Content.Shared.Radio;
  2. using Robust.Shared.Prototypes;
  3. namespace Content.Server.Research.Components;
  4. [RegisterComponent]
  5. public sealed partial class ResearchConsoleComponent : Component
  6. {
  7. /// <summary>
  8. /// The radio channel that the unlock announcements are broadcast to.
  9. /// </summary>
  10. [DataField, ViewVariables(VVAccess.ReadWrite)]
  11. public ProtoId<RadioChannelPrototype> AnnouncementChannel = "Common";
  12. }