19 lines
550 B
C#
19 lines
550 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._DV.Mail.Components
|
|
{
|
|
/// <summary>
|
|
/// 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.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class DelayedItemComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The entity to replace this when opened or dropped.
|
|
/// </summary>
|
|
[DataField]
|
|
public EntProtoId Item;
|
|
}
|
|
}
|