namespace Content.Shared.Cargo.Components; /// /// This is used for setting a static, unchanging price for an object. /// [RegisterComponent] public sealed partial class StaticPriceComponent : Component { /// /// The price of the object this component is on. /// [DataField("price", required: true)] public double Price; /// /// Frontier - The price of the object this component is on when buying from a vending machine. /// [DataField] public double VendPrice; }