Files
tbd-station-14/Content.Shared/Speech/SpeakAttemptEvent.cs
2021-11-09 13:21:59 +01:00

15 lines
279 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Speech
{
public class SpeakAttemptEvent : CancellableEntityEventArgs
{
public SpeakAttemptEvent(EntityUid uid)
{
Uid = uid;
}
public EntityUid Uid { get; }
}
}