6
2026-01-13 18:31:02 +02: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);