11 lines
242 B
C#
11 lines
242 B
C#
|
|
namespace Content.Server.Cargo.Components;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// This is used for the price gun, which calculates the price of any object it appraises.
|
|||
|
|
/// </summary>
|
|||
|
|
[RegisterComponent]
|
|||
|
|
public sealed class PriceGunComponent : Component
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|