6
StarHorizon_Public/Content.Shared/_RMC14/Attachable/Components/AttachableWeaponRangedModsComponent.cs
2026-01-24 12:49:55 +03:00

16 lines
541 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 AttachableWeaponRangedModsComponent : Component
{
[DataField, AutoNetworkedField]
public List<AttachableWeaponRangedModifierSet> Modifiers = new();
[DataField, AutoNetworkedField]
public List<AttachableWeaponFireModesModifierSet>? FireModeMods;
}