15 lines
358 B
C#
15 lines
358 B
C#
namespace Content.Server.Traitor.Uplink.SurplusBundle;
|
|
|
|
/// <summary>
|
|
/// Fill crate with a random uplink items.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class SurplusBundleComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Total price of all content inside bundle.
|
|
/// </summary>
|
|
[DataField]
|
|
public int TotalPrice = 20;
|
|
}
|