using System.Collections; using System.Collections.Generic; using UnityEngine; namespace OctoberStudio.Save { public interface ISaveManager { T GetSave(int hash) where T : ISave, new(); T GetSave(string uniqueName) where T : ISave, new(); void Save(bool multithreading = false); } }