Files

15 lines
418 B
C#
Raw Permalink Normal View History

2023-01-01 00:59:38 -05:00
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
2023-01-01 00:59:38 -05:00
{
/// <summary>
/// The radius of entities that will be affected
/// </summary>
[DataField("radius")]
public float Radius = 15f;
}