Files
tbd-station-14/Content.Shared/Traitor/Uplink/UplinkAccount.cs
2022-02-16 18:23:23 +11:00

17 lines
392 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Traitor.Uplink
{
public sealed class UplinkAccount
{
public readonly EntityUid? AccountHolder;
public int Balance;
public UplinkAccount(int startingBalance, EntityUid? accountHolder = null)
{
AccountHolder = accountHolder;
Balance = startingBalance;
}
}
}