15 lines
340 B
C#
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;
|
|
}
|