Files
tbd-station-14/Content.Server/Interfaces/IServerPreferencesManager.cs
2020-01-24 17:25:01 +01:00

13 lines
315 B
C#

using Content.Shared.Preferences;
using Robust.Server.Interfaces.Player;
namespace Content.Server.Interfaces
{
public interface IServerPreferencesManager
{
void Initialize();
void OnClientConnected(IPlayerSession session);
PlayerPreferences GetPreferences(string username);
}
}