mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
* get that crap outta here * reenables tests * helper * removes serverside itemcomp & misc fixes * oopsie * fixes tests * motivation low * container stuff * resolves optional * fix some tests * fixes Co-authored-by: Paul Ritter <ritter.paul1@gmail.com>
15 lines
424 B
C#
15 lines
424 B
C#
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Robust.Shared.Containers
|
|
{
|
|
/// <summary>
|
|
/// Raised when an entity is removed from a container.
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public sealed class EntRemovedFromContainerMessage : ContainerModifiedMessage
|
|
{
|
|
public EntRemovedFromContainerMessage(EntityUid entity, IContainer container) : base(entity, container) { }
|
|
}
|
|
}
|