AxibugEmuOnline/AxibugEmuOnline.Client.Switch/Assets/Script/AppMain/AxiPlayerPrefs/IAxiPlayerPrefs.cs
2025-08-20 10:25:32 +08:00

13 lines
438 B
C#

public interface IAxiPlayerPrefs
{
void DeleteAll();
float GetFloat(string key, float defaultValue);
float GetFloat(string key);
int GetInt(string key, int defaultValue);
int GetInt(string key);
string GetString(string key);
string GetString(string key, string defaultValue);
void SetFloat(string key, float value);
void SetInt(string key, int value);
void SetString(string key, string value);
}