13 lines
289 B
C#
13 lines
289 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._Sunrise.TTS;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class ClientOptionTTSEvent : EntityEventArgs
|
|
{
|
|
public bool Enabled { get; }
|
|
public ClientOptionTTSEvent(bool enabled)
|
|
{
|
|
Enabled = enabled;
|
|
}
|
|
}
|