Files
tbd-station-14/Content.Shared/Clothing/MagbootsComponent.cs
2023-04-22 20:42:36 +10:00

16 lines
440 B
C#

using Content.Shared.Actions.ActionTypes;
using Robust.Shared.GameStates;
namespace Content.Shared.Clothing;
[RegisterComponent, NetworkedComponent(), AutoGenerateComponentState]
[Access(typeof(SharedMagbootsSystem))]
public sealed partial class MagbootsComponent : Component
{
[DataField("toggleAction", required: true)]
public InstantAction ToggleAction = new();
[DataField("on"), AutoNetworkedField]
public bool On;
}