10 lines
264 B
C#
10 lines
264 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._White.TTS;
|
|
|
|
[Serializable, NetSerializable]
|
|
// ReSharper disable once InconsistentNaming
|
|
public sealed class RequestTTSEvent(string text) : EntityEventArgs
|
|
{
|
|
public string Text { get; } = text;
|
|
} |