12 lines
283 B
C#
12 lines
283 B
C#
|
|
namespace Content.Server.Disposal.Unit.Components;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// A component added to entities that are currently in disposals.
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public sealed class BeingDisposedComponent : Component
|
|||
|
|
{
|
|||
|
|
[ViewVariables]
|
|||
|
|
public EntityUid Holder;
|
|||
|
|
}
|