Files
OldThink/Content.Server/Announcements/RoundAnnouncementPrototype.cs

19 lines
472 B
C#
Raw Permalink Normal View History

2022-07-29 14:13:12 +12:00
using Robust.Shared.Audio;
2022-05-10 10:44:38 +10:00
using Robust.Shared.Prototypes;
namespace Content.Server.Announcements;
/// <summary>
/// Used for any announcements on the start of a round.
/// </summary>
[Prototype("roundAnnouncement")]
public sealed partial class RoundAnnouncementPrototype : IPrototype
2022-05-10 10:44:38 +10:00
{
[IdDataField]
public string ID { get; private set; } = default!;
2022-05-10 10:44:38 +10:00
[DataField("sound")] public SoundSpecifier? Sound;
[DataField("message")] public string? Message;
}