1
0

CollideMaterialReclaimerComponent.cs 473 B

12345678910111213141516
  1. namespace Content.Shared.Materials;
  2. /// <summary>
  3. /// Valid items that collide with an entity with this component
  4. /// will begin to be reclaimed.
  5. /// <seealso cref="MaterialReclaimerComponent"/>
  6. /// </summary>
  7. [RegisterComponent]
  8. public sealed partial class CollideMaterialReclaimerComponent : Component
  9. {
  10. /// <summary>
  11. /// The fixture that starts reclaiming on collision.
  12. /// </summary>
  13. [DataField("fixtureId")]
  14. public string FixtureId = "brrt";
  15. }