2023-12-06 02:00:51 -05:00
|
|
|
using Content.Shared.Radio;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2022-12-25 16:22:23 -05:00
|
|
|
namespace Content.Server.Research.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class ResearchConsoleComponent : Component
|
2019-09-03 22:51:19 +02:00
|
|
|
{
|
2023-12-06 02:00:51 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// The radio channel that the unlock announcements are broadcast to.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public ProtoId<RadioChannelPrototype> AnnouncementChannel = "Science";
|
2019-09-03 22:51:19 +02:00
|
|
|
}
|
2022-12-25 16:22:23 -05:00
|
|
|
|