using Content.Server.Thief.Systems; using Content.Shared.Thief; using Robust.Shared.Audio; using Robust.Shared.Prototypes; namespace Content.Server.Thief.Components; /// /// This component stores the possible contents of the backpack, /// which can be selected via the interface. /// [RegisterComponent, Access(typeof(ThiefUndeterminedBackpackSystem))] public sealed partial class ThiefUndeterminedBackpackComponent : Component { /// /// List of sets available for selection /// [DataField] public List> PossibleSets = new(); [DataField] public List SelectedSets = new(); [DataField] public SoundSpecifier ApproveSound = new SoundPathSpecifier("/Audio/Effects/rustle1.ogg"); }