2023-03-13 16:36:35 -04:00
|
|
|
using Content.Server.Cargo.Systems;
|
|
|
|
|
using Content.Shared.Stacks;
|
|
|
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Cargo.Components;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
[Access(typeof(CargoSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class CargoPalletConsoleComponent : Component
|
2023-03-13 16:36:35 -04:00
|
|
|
{
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("cashType", customTypeSerializer:typeof(PrototypeIdSerializer<StackPrototype>))]
|
|
|
|
|
public string CashType = "Credit";
|
|
|
|
|
}
|