Files
tbd-station-14/Content.Server/Interfaces/IAccess.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

12 lines
207 B
C#

using System.Collections.Generic;
namespace Content.Server.Interfaces
{
public interface IAccess
{
public List<string> GetTags();
public void SetTags(List<string> newTags);
}
}