Skip to content

Commit

Permalink
Auto stash before merge of "master" and "origin/master"
Browse files Browse the repository at this point in the history
simple scrambling
  • Loading branch information
richardelms committed Nov 18, 2017
1 parent 78a51b2 commit 69bad69
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Assets/Plugins/FileBasedPrefs/FileBasedPrefs.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.IO;
using UnityEngine;
using System.Runtime.Serialization.Formatters.Binary;
namespace STF.FileBasedPrefs
{
public static class FileBasedPrefs
Expand Down Expand Up @@ -109,7 +108,7 @@ private static void WriteToSaveFile(string data)

static string JsonScrambler(string data)
{
string codeword = "word";
string codeword = "fjnskabasflbdcj";
string res = "";
for (int i = 0; i < data.Length; i++)
{
Expand Down

0 comments on commit 69bad69

Please sign in to comment.