using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; namespace BayatGames.SaveGameFree.Encoders { /// /// Interface for Save Game Encoders. /// public interface ISaveGameEncoder { /// /// Encode the specified input with password. /// /// Input. /// Password. string Encode ( string input, string password ); /// /// Decode the specified input with password. /// /// Input. /// Password. string Decode ( string input, string password ); } }