Delta-v/Content.Server/_DV/Cargo/Components/PriceModifierComponent.cs

15 lines
340 B
C#

namespace Content.Server._DV.Cargo.Components;
/// <summary>
/// This is used for modifying the sell price of an entity.
/// </summary>
[RegisterComponent]
public sealed partial class PriceModifierComponent : Component
{
/// <summary>
/// The price modifier.
/// </summary>
[DataField]
public float Modifier;
}