Example #1
0
 /// <summary>
 /// Returns the value corresponding to key in the persistent data storage if it exists.
 /// If it doesn't exist, it will return defaultValue.
 /// </summary>
 /// <returns>The float.</returns>
 /// <param name="key">Key.</param>
 public static float GetFloat(string key, float defaultValue)
 {
     return(StoringSystem.GetFloat(key, defaultValue));
 }