Files
tbd-station-14/Content.Server/Announcements/RoundAnnouncementPrototype.cs
2023-05-21 20:06:05 +10:00

21 lines
582 B
C#

using Content.Server.GameTicking.Presets;
using Robust.Shared.Audio;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
namespace Content.Server.Announcements;
/// <summary>
/// Used for any announcements on the start of a round.
/// </summary>
[Prototype("roundAnnouncement")]
public sealed class RoundAnnouncementPrototype : IPrototype
{
[IdDataField]
public string ID { get; } = default!;
[DataField("sound")] public SoundSpecifier? Sound;
[DataField("message")] public string? Message;
}