forked from sin365/AxibugEmuOnline
13 lines
438 B
C#
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);
|
|
} |