2023-04-10 00:38:20 -04:00
|
|
|
|
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]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class CollideMaterialReclaimerComponent : Component
|
2023-04-10 00:38:20 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The fixture that starts reclaiming on collision.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("fixtureId")]
|
|
|
|
|
|
public string FixtureId = "brrt";
|
|
|
|
|
|
}
|