10 lines
240 B
C#
10 lines
240 B
C#
namespace Content.Server.Cargo.Components;
|
|
|
|
/// <summary>
|
|
/// Marks an entity as unable to be sold through the cargo shuttle.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class CargoSellBlacklistComponent : Component
|
|
{
|
|
}
|