StackSplitEvent.cs 287 B

12345678
  1. namespace Content.Shared.Stacks;
  2. /// <summary>
  3. /// Raised on the original stack entity when it is split to create another.
  4. /// </summary>
  5. /// <param name="NewId">The entity id of the new stack.</param>
  6. [ByRefEvent]
  7. public readonly record struct StackSplitEvent(EntityUid NewId);