2021-11-02 09:04:07 +00:00
|
|
|
namespace Content.Server.Containers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Empties a list of containers when the machine is deconstructed via MachineDeconstructedEvent.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class EmptyOnMachineDeconstructComponent : Component
|
2021-11-02 09:04:07 +00:00
|
|
|
{
|
|
|
|
|
[DataField("containers")]
|
|
|
|
|
public HashSet<string> Containers { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|