Files

7 lines
280 B
C#
Raw Permalink Normal View History

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);