17 lines
465 B
C#
17 lines
465 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 class CollideMaterialReclaimerComponent : Component
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// The fixture that starts reclaiming on collision.
|
|||
|
|
/// </summary>
|
|||
|
|
[DataField("fixtureId")]
|
|||
|
|
public string FixtureId = "brrt";
|
|||
|
|
}
|