Files
OldThink/Content.Shared/Clothing/MagbootsComponent.cs

20 lines
575 B
C#
Raw Permalink Normal View History

using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Shared.Clothing;
2023-04-22 12:42:36 +02:00
[RegisterComponent, NetworkedComponent(), AutoGenerateComponentState]
[Access(typeof(SharedMagbootsSystem))]
public sealed partial class MagbootsComponent : Component
{
[DataField]
public EntProtoId ToggleAction = "ActionToggleMagboots";
[DataField, AutoNetworkedField]
public EntityUid? ToggleActionEntity;
2023-04-22 12:42:36 +02:00
[DataField("on"), AutoNetworkedField]
public bool On;
}