14 lines
432 B
C#
14 lines
432 B
C#
using Content.Shared._RMC14.Attachable.Systems;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._RMC14.Attachable.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
[Access(typeof(AttachableModifiersSystem))]
|
|
public sealed partial class AttachableWieldDelayModsComponent : Component
|
|
{
|
|
[DataField, AutoNetworkedField]
|
|
public List<AttachableWieldDelayModifierSet> Modifiers = new();
|
|
}
|
|
|