13 lines
345 B
C#
13 lines
345 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Cargo.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Can be inserted into a <see cref="Content.Server.Cargo.Components.CargoOrderConsoleComponent"/> to increase the station's bank account.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed partial class CashComponent : Component
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|