* ui and visual aspect + radio * finish jank ui shit and finish radio * remove radio * send it --------- Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
27 lines
622 B
C#
27 lines
622 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.ParticleAccelerator.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class ParticleAcceleratorEmitterComponent : Component
|
|
{
|
|
[DataField]
|
|
public EntProtoId EmittedPrototype = "ParticlesProjectile";
|
|
|
|
[DataField("emitterType")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public ParticleAcceleratorEmitterType Type = ParticleAcceleratorEmitterType.Fore;
|
|
|
|
public override string ToString()
|
|
{
|
|
return base.ToString() + $" EmitterType:{Type}";
|
|
}
|
|
}
|
|
|
|
public enum ParticleAcceleratorEmitterType
|
|
{
|
|
Port,
|
|
Fore,
|
|
Starboard
|
|
}
|