2024-06-04 11:24:17 +00:00
|
|
|
using Robust.Shared.GameStates;
|
2023-10-02 16:50:02 +09:00
|
|
|
|
2024-01-28 18:37:24 +07:00
|
|
|
namespace Content.Shared._White.Economy;
|
2023-10-02 16:50:02 +09:00
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
|
|
|
public sealed partial class BankCardComponent : Component
|
|
|
|
|
{
|
2024-06-04 11:24:17 +00:00
|
|
|
[DataField]
|
2023-10-23 21:23:33 +09:00
|
|
|
public int? AccountId;
|
2023-10-02 16:50:02 +09:00
|
|
|
|
2024-06-04 11:24:17 +00:00
|
|
|
[DataField]
|
2023-10-23 21:23:33 +09:00
|
|
|
public int StartingBalance;
|
2023-10-02 16:50:02 +09:00
|
|
|
|
2024-06-04 11:24:17 +00:00
|
|
|
[DataField]
|
2023-10-02 16:50:02 +09:00
|
|
|
public bool CommandBudgetCard;
|
|
|
|
|
}
|