2020-05-28 06:22:47 -05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Content.Shared.GameObjects.Components.PDA;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Interfaces.PDA
|
|
|
|
|
{
|
|
|
|
|
public interface IPDAUplinkManager
|
|
|
|
|
{
|
2020-08-25 18:13:19 +02:00
|
|
|
public IReadOnlyDictionary<string, UplinkListingData> FetchListings => null;
|
|
|
|
|
|
2020-05-28 06:22:47 -05:00
|
|
|
void Initialize();
|
2020-08-25 18:13:19 +02:00
|
|
|
|
2020-05-28 06:22:47 -05:00
|
|
|
public bool AddNewAccount(UplinkAccount acc);
|
|
|
|
|
|
|
|
|
|
public bool ChangeBalance(UplinkAccount acc, int amt);
|
|
|
|
|
|
2020-08-25 18:13:19 +02:00
|
|
|
public bool TryPurchaseItem(UplinkAccount acc, string itemId);
|
2020-05-28 06:22:47 -05:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|