14 lines
365 B
C#
14 lines
365 B
C#
using Content.Shared.Whitelist;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared._DV.CosmicCult.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class CosmicGlyphTransmuteComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The search range for finding transmutation targets.
|
|
/// </summary>
|
|
[DataField] public float TransmuteRange = 0.5f;
|
|
}
|