dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
添加GM 打包
chenxin
2020-11-26
513365c245c00a77e978d309b58a8da8a21461ab
[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();
}
}