using JetBrains.Annotations; using Robust.Shared.GameObjects; namespace Robust.Shared.Containers; /// /// Directed at the entity that was inserted successfully. /// [PublicAPI] public sealed class EntGotInsertedIntoContainerMessage : ContainerModifiedMessage { public EntGotInsertedIntoContainerMessage(EntityUid entity, BaseContainer container) : base(entity, container) { } }