1
0

CashComponent.cs 313 B

123456789101112
  1. using Robust.Shared.GameStates;
  2. namespace Content.Shared.Cargo.Components;
  3. /// <summary>
  4. /// Can be inserted into a <see cref="CargoOrderConsoleComponent"/> to increase the station's bank account.
  5. /// </summary>
  6. [RegisterComponent, NetworkedComponent]
  7. public sealed partial class CashComponent : Component
  8. {
  9. }