dashboard
repositories
filestore
activity
search
login
魏旭东
/
GemBattle
forked from
GemBattle
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
修复引导结束不能购买宝石,打包
chenxin
2020-10-27
49f88e6493466a1723dd6b3967ff4c70f723db5d
[~wxd/GemBattle.git]
/
Assets
/
Scripts
/
Core
/
Data
/
IDataSaver.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Core.Data
{
/// <summary>
/// Interface for saving data
/// </summary>
public interface IDataSaver<T> where T : IDataStore
{
void Save(T data);
bool Load(out T data);
void Delete();
}
}