dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
buff预览暂停
chenxin
2020-11-27
841b66ef416a727a0c798ad2263b098247cb4aa7
[GemBattle.git]
/
Assets
/
Scripts
/
Core
/
Data
/
IDataStore.cs
1
2
3
4
5
6
7
8
9
10
11
12
namespace Core.Data
{
/// <summary>
/// Interface for data store
/// </summary>
public interface IDataStore
{
void PreSave();
void PostLoad();
}
}