private void SetString(string[] args)
 {
     PlayerPrefs.SetString(CommandLineCore.StringWithPipes(args[2]), CommandLineCore.StringWithPipes(args[3]));
 }
 private void GetString(string[] args)
 {
     CommandLineCore.Print(PlayerPrefs.GetString(CommandLineCore.StringWithPipes(args[2])));
 }
 private void SetFloat(string[] args)
 {
     PlayerPrefs.SetFloat(CommandLineCore.StringWithPipes(args[2]), float.Parse(args[3]));
 }