Files
tbd-station-14/Content.Shared/Pulling/Events/PullMessage.cs
2022-02-16 18:23:23 +11:00

18 lines
405 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Physics;
namespace Content.Shared.Physics.Pull
{
public abstract class PullMessage : EntityEventArgs
{
public readonly IPhysBody Puller;
public readonly IPhysBody Pulled;
protected PullMessage(IPhysBody puller, IPhysBody pulled)
{
Puller = puller;
Pulled = pulled;
}
}
}