dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
新手引导宝石上阵特效
wangguan
2020-10-30
ab1a24fa8aaed0c9c678ce6771bb7e9031b79476
[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();
}
}