PipeRestrictOverlapComponent.cs 327 B

123456789
  1. using Content.Server.Atmos.EntitySystems;
  2. namespace Content.Server.Atmos.Components;
  3. /// <summary>
  4. /// This is used for restricting anchoring pipes so that they do not overlap.
  5. /// </summary>
  6. [RegisterComponent, Access(typeof(PipeRestrictOverlapSystem))]
  7. public sealed partial class PipeRestrictOverlapComponent : Component;