12 lines
365 B
C#
12 lines
365 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.ParticleAccelerator.Components
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(ParticleAcceleratorPartComponent))]
|
|
public class ParticleAcceleratorFuelChamberComponent : ParticleAcceleratorPartComponent
|
|
{
|
|
public override string Name => "ParticleAcceleratorFuelChamber";
|
|
}
|
|
}
|