14 lines
354 B
C#
14 lines
354 B
C#
|
|
using Content.Shared.Preferences;
|
||
|
|
|
||
|
|
namespace Content.Client.Interfaces
|
||
|
|
{
|
||
|
|
public interface IClientPreferencesManager
|
||
|
|
{
|
||
|
|
void Initialize();
|
||
|
|
GameSettings Settings { get; }
|
||
|
|
PlayerPreferences Preferences { get; }
|
||
|
|
void SelectCharacter(int slot);
|
||
|
|
void UpdateCharacter(ICharacterProfile profile, int slot);
|
||
|
|
}
|
||
|
|
}
|