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")]
|
2023-11-01 19:56:23 -07:00
|
|
|
public sealed partial class RoundAnnouncementPrototype : IPrototype
|
2022-05-10 10:44:38 +10:00
|
|
|
{
|
2023-01-19 03:56:45 +01:00
|
|
|
[IdDataField]
|
2023-08-22 18:14:33 -07:00
|
|
|
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;
|
|
|
|
|
}
|