Files
tbd-station-14/Content.Shared/Stacks/StackSplitEvent.cs
2023-09-17 20:22:26 -04:00

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