dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
安卓报错BUG
wangguan
2020-12-14
0df19f41bd178984131c2f1b59bae330fbf23d24
[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();
}
}