15 lines
373 B
C#
15 lines
373 B
C#
namespace Content.Server.Cargo.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for pricing stacks of items.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class StackPriceComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The price of the object this component is on, per unit.
|
|
/// </summary>
|
|
[DataField("price", required: true)]
|
|
public double Price;
|
|
}
|