chunk 1: core gameplay scripts scenes runtime assets
This commit is contained in:
5
Assets/Scripts/SaveSystem/Interfaces/IDataService.cs
Normal file
5
Assets/Scripts/SaveSystem/Interfaces/IDataService.cs
Normal file
@@ -0,0 +1,5 @@
|
||||
public interface IDataService
|
||||
{
|
||||
bool SaveData<T>(string RelativePath, T Data, bool Encrypted);
|
||||
T LoadData<T>(string RelativePath, bool Encrypted);
|
||||
}
|
||||
Reference in New Issue
Block a user