6
StarHorizon_Public/Content.Server/Salvage/Magnet/SalvageMobRestrictionsComponent.cs
2025-12-13 13:46:17 +03:00

13 lines
334 B
C#

namespace Content.Server.Salvage.Magnet;
// This is dumb
/// <summary>
/// Deletes the attached entity if the linked entity is deleted.
/// </summary>
[RegisterComponent]
public sealed partial class SalvageMobRestrictionsComponent : Component
{
[DataField, ViewVariables(VVAccess.ReadWrite)]
public EntityUid LinkedEntity;
}