Files
tbd-station-14/Content.Server/Interfaces/PDA/IPDAUplinkManager.cs
FL-OZ 4c20a504a5 Add basic PDA/Syndicate Uplink. (#942)
Co-authored-by: FL-OZ <anotherscuffed@gmail.com>
Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
2020-05-28 13:22:47 +02:00

20 lines
531 B
C#

using System;
using System.Collections.Generic;
using Content.Shared.GameObjects.Components.PDA;
using Content.Shared.Prototypes.PDA;
namespace Content.Server.Interfaces.PDA
{
public interface IPDAUplinkManager
{
public IReadOnlyList<UplinkListingData> FetchListings => null;
void Initialize();
public bool AddNewAccount(UplinkAccount acc);
public bool ChangeBalance(UplinkAccount acc, int amt);
public bool TryPurchaseItem(UplinkAccount acc, UplinkListingData listing);
}
}