Remove PA component references (#15252)

This commit is contained in:
DrSmugleaf
2023-04-09 21:10:33 -07:00
committed by GitHub
parent f8cef464a2
commit 39f272fa5c
11 changed files with 49 additions and 50 deletions

View File

@@ -1,8 +1,6 @@
namespace Content.Server.ParticleAccelerator.Components
namespace Content.Server.ParticleAccelerator.Components;
[RegisterComponent]
public sealed class ParticleAcceleratorEndCapComponent : Component
{
[RegisterComponent]
[ComponentReference(typeof(ParticleAcceleratorPartComponent))]
public sealed class ParticleAcceleratorEndCapComponent : ParticleAcceleratorPartComponent
{
}
}