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