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

            return(JsonUtility.ToJson(tempSave));
        }