Files
tbd-station-14/Content.Shared/Movement/Pulling/Events/PullStoppedMessage.cs
2025-09-01 02:32:59 +02:00

7 lines
280 B
C#

namespace Content.Shared.Movement.Pulling.Events;
/// <summary>
/// Event raised directed BOTH at the puller and pulled entity when a pull stops.
/// </summary>
public sealed class PullStoppedMessage(EntityUid pullerUid, EntityUid pulledUid) : PullMessage(pullerUid, pulledUid);