research console radio messages on unlock (#22166)

This commit is contained in:
Nemanja
2023-12-06 02:00:51 -05:00
committed by GitHub
parent 5ecd4aa855
commit 89295d97b6
6 changed files with 37 additions and 3 deletions

View File

@@ -1,8 +1,15 @@
using Content.Shared.Radio;
using Robust.Shared.Prototypes;
namespace Content.Server.Research.Components;
[RegisterComponent]
public sealed partial class ResearchConsoleComponent : Component
{
/// <summary>
/// The radio channel that the unlock announcements are broadcast to.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public ProtoId<RadioChannelPrototype> AnnouncementChannel = "Science";
}