using Robust.Shared.Prototypes;
namespace Content.Server._DV.Mail.Components
{
///
/// A placeholder for another entity, spawned when dropped or placed in someone's hands.
/// Useful for storing instant effect entities, e.g. smoke, in the mail.
///
[RegisterComponent]
public sealed partial class DelayedItemComponent : Component
{
///
/// The entity to replace this when opened or dropped.
///
[DataField]
public EntProtoId Item;
}
}