11 lines
396 B
C#
11 lines
396 B
C#
namespace Content.Server._White.TTS;
|
|
|
|
// ReSharper disable once InconsistentNaming
|
|
public sealed class TTSAnnouncementEvent(string message, string voiceId, EntityUid source, bool global)
|
|
: EntityEventArgs
|
|
{
|
|
public readonly string Message = message;
|
|
public readonly bool Global = global;
|
|
public readonly string VoiceId = voiceId;
|
|
public readonly EntityUid Source = source;
|
|
} |