mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
This reverts commit 648fea35b6.
# Description
Now that we have the list of Wizden Mirrors, it's now possible to bring
this back, and resume work on maintaining this repo.
21 lines
646 B
C#
21 lines
646 B
C#
namespace Content.Shared.Frontier.Storage.Components;
|
|
|
|
/// <summary>
|
|
/// Applies an ongoing pickup area around the attached entity.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class MaterialReclaimerMagnetPickupComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("nextScan")]
|
|
public TimeSpan NextScan = TimeSpan.Zero;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("range")]
|
|
public float Range = 1f;
|
|
|
|
/// <summary>
|
|
/// Frontier - Is the magnet currently enabled?
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("magnetEnabled")]
|
|
public bool MagnetEnabled = false;
|
|
}
|