mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 00:34:44 +01:00
13 lines
393 B
C#
13 lines
393 B
C#
namespace Content.Server.Containers
|
|
{
|
|
/// <summary>
|
|
/// Empties a list of containers when the machine is deconstructed via MachineDeconstructedEvent.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class EmptyOnMachineDeconstructComponent : Component
|
|
{
|
|
[DataField("containers")]
|
|
public HashSet<string> Containers { get; set; } = new();
|
|
}
|
|
}
|