Files
wwdpublic/Content.Shared/Projectiles/EmbeddedContainerComponent.cs
Ed 39261517d5 Fix embeddable projectiles dissapearing (reopening) (#35153)
(cherry picked from commit 244d7a629e05a1397d9c2254a77001d2a50cc8fd)
2026-02-11 18:42:23 +03:00

14 lines
411 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Projectiles;
/// <summary>
/// Stores a list of all stuck entities to release when this entity is deleted.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class EmbeddedContainerComponent : Component
{
[DataField, AutoNetworkedField]
public HashSet<EntityUid> EmbeddedObjects = new();
}