15 lines
296 B
C#
15 lines
296 B
C#
|
|
using Robust.Shared.GameObjects;
|
||
|
|
|
||
|
|
namespace Content.Shared.Movement
|
||
|
|
{
|
||
|
|
public sealed class RelayMovementEntityEvent : EntityEventArgs
|
||
|
|
{
|
||
|
|
public IEntity Entity { get; }
|
||
|
|
|
||
|
|
public RelayMovementEntityEvent(IEntity entity)
|
||
|
|
{
|
||
|
|
Entity = entity;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|