Ejemplo n.º 1
0
 public static T GetSaveData <T>(ISaveGame save, string key)
 {
     return(ByteArrToVal <T>(save.GetData(@key)));
 }
Ejemplo n.º 2
0
        //Utilities end

        //Cleaner looking methods
        public static bool HasSaveData(ISaveGame save, string key)
        {
            return(save.GetData(@key) != null);
        }