mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
14 lines
408 B
C#
14 lines
408 B
C#
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Robust.Shared.Containers;
|
|
|
|
/// <summary>
|
|
/// Directed at the entity that was inserted successfully.
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public sealed class EntGotInsertedIntoContainerMessage : ContainerModifiedMessage
|
|
{
|
|
public EntGotInsertedIntoContainerMessage(EntityUid entity, BaseContainer container) : base(entity, container) { }
|
|
}
|