* partial buckling refactor * git mv test * change test namespace * git mv test * Update test namespace * Add pulling test * Network BuckleTime * Add two more tests * smelly
7 lines
284 B
C#
7 lines
284 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 PullStoppedMessage(EntityUid pullerUid, EntityUid pulledUid) : PullMessage(pullerUid, pulledUid);
|