dashboard
repositories
filestore
activity
search
login
魏旭东
/
GemBattle
forked from
GemBattle
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
little commit
chenxin
2020-10-28
8716403033b7c70b00b61bc6c74af04e4d248ecc
[~wxd/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();
}
}