Files
tbd-station-14/Content.Server/Containers/EmptyOnMachineDeconstructComponent.cs
2022-05-13 17:59:03 +10:00

14 lines
409 B
C#

namespace Content.Server.Containers
{
/// <summary>
/// Empties a list of containers when the machine is deconstructed via MachineDeconstructedEvent.
/// </summary>
[RegisterComponent]
public sealed class EmptyOnMachineDeconstructComponent : Component
{
[ViewVariables]
[DataField("containers")]
public HashSet<string> Containers { get; set; } = new();
}
}