Exemplo n.º 1
0
 /// <summary>
 /// Setup save type
 /// </summary>
 public override void Awake()
 {
     save = new CaesarCipherIntSave(0);
 }
Exemplo n.º 2
0
        public override string GetJson()
        {
            CaesarCipherIntSave tempSave = new CaesarCipherIntSave(value + GetShift);

            return(JsonUtility.ToJson(tempSave));
        }