Files
OldThink/Content.Shared/_White/TTS/PlayTTSEvent.cs

14 lines
389 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared._White.TTS;
[Serializable, NetSerializable]
// ReSharper disable once InconsistentNaming
public sealed class PlayTTSEvent(NetEntity uid, byte[] data, bool boostVolume) : EntityEventArgs
{
public NetEntity Uid { get; } = uid;
public byte[] Data { get; } = data;
public bool BoostVolume { get; } = boostVolume;
}