Files
OldThink/Content.Shared/_White/MagGloves/MagneticGlovesAdvancedComponent.cs
Viktor 1b2b313804 Mag gloves (#147)
* created yml

* +mechanics

* textures

* full implementation of magnetic gloves without lathe crafts and researches

* finale

* meeerge

* Fixed
2024-03-21 03:08:17 +03:00

17 lines
459 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared._White.MagGloves;
/// <summary>
/// This is used as a marker for advanced magnetic gloves.
/// </summary>
[RegisterComponent, AutoGenerateComponentState]
public sealed partial class MagneticGlovesAdvancedComponent : Component
{
[DataField, AutoNetworkedField]
public EntityUid? ToggleActionEntity;
[DataField]
public EntProtoId ToggleAction = "ActionToggleMagneticGlovesAdvanced";
}