using Content.Server.Cargo.Systems; using Content.Shared.Stacks; using Robust.Shared.Audio; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.Cargo.Components; [RegisterComponent] [Access(typeof(CargoSystem))] public sealed partial class CargoPalletConsoleComponent : Component { [DataField("soundError")] public SoundSpecifier ErrorSound = new SoundPathSpecifier("/Audio/Effects/Cargo/buzz_sigh.ogg"); [DataField("soundConfirm")] public SoundSpecifier ConfirmSound = new SoundPathSpecifier("/Audio/Effects/Cargo/ping.ogg"); [ViewVariables(VVAccess.ReadWrite), DataField("cashType", customTypeSerializer:typeof(PrototypeIdSerializer))] public string CashType = "Credit"; }