2024-01-28 18:18:54 +07:00
|
|
|
|
namespace Content.Server._White.TTS;
|
2023-08-28 18:55:56 +03:00
|
|
|
|
|
2024-04-17 11:36:02 +07:00
|
|
|
|
// ReSharper disable once InconsistentNaming
|
|
|
|
|
|
public sealed class TTSAnnouncementEvent(string message, string voiceId, EntityUid source, bool global)
|
|
|
|
|
|
: EntityEventArgs
|
2023-08-28 18:55:56 +03:00
|
|
|
|
{
|
2024-04-17 11:36:02 +07:00
|
|
|
|
public readonly string Message = message;
|
|
|
|
|
|
public readonly bool Global = global;
|
|
|
|
|
|
public readonly string VoiceId = voiceId;
|
|
|
|
|
|
public readonly EntityUid Source = source;
|
|
|
|
|
|
}
|