Files
tbd-station-14/Content.Shared/Traitor/Uplink/UplinkAccount.cs
2021-10-08 12:26:42 +02:00

17 lines
385 B
C#

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