Files
crystall-punk-14/Content.Shared/Pulling/Events/PullMessage.cs

17 lines
411 B
C#
Raw Normal View History

using Robust.Shared.Physics.Components;
namespace Content.Shared.Physics.Pull
{
public abstract class PullMessage : EntityEventArgs
{
2023-01-03 17:45:18 +11:00
public readonly PhysicsComponent Puller;
public readonly PhysicsComponent Pulled;
2023-01-03 17:45:18 +11:00
protected PullMessage(PhysicsComponent puller, PhysicsComponent pulled)
{
Puller = puller;
Pulled = pulled;
}
}
}