namespace Content.Server.Cargo.Components;
using Content.Shared.Actions;
using Robust.Shared.Serialization.TypeSerializers.Implementations;
///
/// Any entities intersecting when a shuttle is recalled will be sold.
///
[Flags]
public enum BuySellType : byte
{
Buy = 1 << 0,
Sell = 1 << 1,
All = Buy | Sell
}
[RegisterComponent]
public sealed partial class CargoPalletComponent : Component
{
///
/// Whether the pad is a buy pad, a sell pad, or all.
///
[DataField]
public BuySellType PalletType;
}