15 lines
319 B
C#
15 lines
319 B
C#
|
|
using Robust.Shared.GameObjects;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Interaction.Events
|
|||
|
|
{
|
|||
|
|
public class ChangeDirectionAttemptEvent : CancellableEntityEventArgs
|
|||
|
|
{
|
|||
|
|
public ChangeDirectionAttemptEvent(IEntity entity)
|
|||
|
|
{
|
|||
|
|
Entity = entity;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public IEntity Entity { get; }
|
|||
|
|
}
|
|||
|
|
}
|