Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
richardelms authored Nov 20, 2017
1 parent 1404c93 commit b25cd01
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,15 @@ using STF.FileBasedPrefs;
FileBasedPrefs.HasKeyForBool(String key); will return true if there is a bool saved under the requested key
FileBasedPrefs.DeleteKey(String key); This will delete ALL data records saved under the key
FileBasedPrefs.DeleteKey(String key); This will delete ALL data records saved under the key regardless of type
FileBasedPrefs.DeleteString(String key); This will delete any string recorded under the key
FileBasedPrefs.DeleteInt(String key); This will delete any int recorded under the key
FileBasedPrefs.DeleteFloat(String key); This will delete any float recorded under the key
FileBasedPrefs.DeleteBool(String key); This will delete any bool recorded under the key
FileBasedPrefs.DeleteAll(); // Deletes all records and replaces the save file with a blank one
Expand Down

0 comments on commit b25cd01

Please sign in to comment.