6
2025-12-13 13:46:17 +03:00

7 lines
288 B
C#

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