Files
ss14-wl/Content.Shared/Materials/CollideMaterialReclaimerComponent.cs
Pupchansky 247c92fc5e Фикс дюпа с помощью [прото/авто/т.д.]-латов (#351)
* init

* init 2

* summary и забытые wl теги

* coderabbit фиксы
2025-10-29 18:35:58 +03:00

17 lines
457 B
C#

namespace Content.Shared.Materials;
/// <summary>
/// Valid items that collide with an entity with this component
/// will begin to be reclaimed.
/// <seealso cref="MaterialReclaimerComponent"/>
/// </summary>
[RegisterComponent]
public sealed partial class CollideMaterialReclaimerComponent : Component
{
/// <summary>
/// The fixture that starts reclaiming on collision.
/// </summary>
[DataField]
public string FixtureId = "brrt";
}