2022-02-19 17:42:01 -07:00
|
|
|
|
namespace Content.Server.Disposal.Unit.Components;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// A component added to entities that are currently in disposals.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class BeingDisposedComponent : Component
|
2022-02-19 17:42:01 -07:00
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
|
|
|
|
|
public EntityUid Holder;
|
|
|
|
|
|
}
|