2023-01-15 15:38:59 +11:00
|
|
|
|
using Robust.Shared.Physics.Components;
|
2020-08-16 18:51:21 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Physics.Pull
|
|
|
|
|
|
{
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public abstract class PullMessage : EntityEventArgs
|
2020-08-16 18:51:21 +02:00
|
|
|
|
{
|
2023-01-03 17:45:18 +11:00
|
|
|
|
public readonly PhysicsComponent Puller;
|
|
|
|
|
|
public readonly PhysicsComponent Pulled;
|
2020-08-16 18:51:21 +02:00
|
|
|
|
|
2023-01-03 17:45:18 +11:00
|
|
|
|
protected PullMessage(PhysicsComponent puller, PhysicsComponent pulled)
|
2020-08-16 18:51:21 +02:00
|
|
|
|
{
|
|
|
|
|
|
Puller = puller;
|
|
|
|
|
|
Pulled = pulled;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|