mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 22:49:01 +03:00
I thought we had it already but maybe it was an unfinished pr or something. (cherry picked from commit ad23facb7a9670bcc10e2f9e89d2e22db2052697)
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
|
|
{
|
|
|
|
}
|