mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 23:48:15 +03:00
18 lines
550 B
C#
18 lines
550 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Content.Client.Singularity.Components
|
|
{
|
|
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(IClientSingularityInstance))]
|
|
public class ToySingularityComponent : Component, IClientSingularityInstance
|
|
{
|
|
public override string Name => "ToySingularity";
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float Falloff { get; set; } = 2.0f;
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float Intensity { get; set; } = 0.25f;
|
|
}
|
|
}
|