Exemplo n.º 1
0
 protected virtual T GetValue()
 {
     return(JsonUtility.FromJson <T>(HPlayerPrefs.GetString(key)));
 }
Exemplo n.º 2
0
 protected virtual void SetValue(T value)
 {
     HPlayerPrefs.SetString(key, JsonUtility.ToJson(value));
 }