CleansForensicsComponent.cs 397 B

1234567891011121314
  1. namespace Content.Server.Forensics;
  2. /// <summary>
  3. /// This component is for items that can clean up forensic evidence
  4. /// </summary>
  5. [RegisterComponent]
  6. public sealed partial class CleansForensicsComponent : Component
  7. {
  8. /// <summary>
  9. /// How long it takes to wipe prints/blood/etc. off of things using this entity
  10. /// </summary>
  11. [DataField]
  12. public float CleanDelay = 12.0f;
  13. }