9 lines
287 B
C#
9 lines
287 B
C#
namespace Content.Shared.Stacks;
|
|
|
|
/// <summary>
|
|
/// Raised on the original stack entity when it is split to create another.
|
|
/// </summary>
|
|
/// <param name="NewId">The entity id of the new stack.</param>
|
|
[ByRefEvent]
|
|
public readonly record struct StackSplitEvent(EntityUid NewId);
|