15 lines
418 B
C#
15 lines
418 B
C#
namespace Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for recharging all nearby batteries when activated
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class ChargeBatteryArtifactComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The radius of entities that will be affected
|
|
/// </summary>
|
|
[DataField("radius")]
|
|
public float Radius = 15f;
|
|
}
|