15 lines
287 B
C#
15 lines
287 B
C#
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Speech
|
|||
|
|
{
|
|||
|
|
public class SpeakAttemptEvent : CancellableEntityEventArgs
|
|||
|
|
{
|
|||
|
|
public SpeakAttemptEvent(IEntity entity)
|
|||
|
|
{
|
|||
|
|
Entity = entity;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public IEntity Entity { get; }
|
|||
|
|
}
|
|||
|
|
}
|