fish-station/Content.Server/ParticleAccelerator/Components/ParticleProjectileComponent.cs
TemporalOroboros d71b6c84e5
Converts the particle accelerator over to ECS + misc (#17075)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
2023-06-08 16:25:59 +10:00

9 lines
236 B
C#

using Content.Shared.Singularity.Components;
namespace Content.Server.ParticleAccelerator.Components;
[RegisterComponent]
public sealed class ParticleProjectileComponent : Component
{
public ParticleAcceleratorPowerState State;
}