2024-06-20 03:14:18 +12:00
|
|
|
|
namespace Content.Shared.Movement.Pulling.Events;
|
2024-03-19 14:30:56 +11:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-06-20 03:14:18 +12:00
|
|
|
|
/// Event raised directed BOTH at the puller and pulled entity when a pull starts.
|
2024-03-19 14:30:56 +11:00
|
|
|
|
/// </summary>
|
2024-06-20 03:14:18 +12:00
|
|
|
|
public sealed class PullStoppedMessage(EntityUid pullerUid, EntityUid pulledUid) : PullMessage(pullerUid, pulledUid);
|